Dojo中跨域獲取新浪股票接口返回的數據(練習)

首先,配置好環境,不羅嗦了,而後,使用request中的script模塊中的方法,獲取代碼地址爲http://hq.sinajs.cn/list=sh000001,核心代碼以下:json

 1             on(dom.byId("clickToShowCode"),"click",function(){
 2                 var stockCode = dom.byId("stockNo").value;
 3                 console.log(stockCode);
 4                 var url = "http://hq.sinajs.cn/list=" + stockCode;
 5                 script.get(url,{
 6                 // jsonp: "callback"
 7                 }).then(function(data){
 8                     //console.log(hq_str_sh000001); 
 9                     dom.byId("showData").innerHTML = eval("hq_str_"+stockCode);
10                     //console.log(eval("hq_str_"+stockCode).constructor);
             //判斷一個給定變量的類型可使用constructor屬性
11 },function(err){ 12 console.log(err); 13 }); 14 });

 這裏主要使用了dojo/request/script這個模塊,下面給出一個相關的簡單示例:dom

 1  require([
 2     "dojo/request/script", 
 3     "dojo/dom", 
 4     "dojo/dom-construct", 
 5     "dojo/json", 
 6     "dojo/on",
 7     "dojo/domReady!"], function(script, dom, domConst, JSON, on){ 
 8         on(dom.byId("startButton"), "click", function(){ 
 9             domConst.place("<p>Requesting...</p>", "output"); 
10             script.get("helloworld.jsonp.js", { 
11               jsonp: "callback"
12             }).then(function(data){ 
13               domConst.place("<p>response data: <code>" + JSON.stringify(data) + "</code></p>", "output"); 
14         }); 
15     }); 
16  });
相關文章
相關標籤/搜索