wongyusing 发表于 2018-8-31 21:57:52

关于获取json数据的问题

项目文件:项目文件链接(github)
我现在在做一个用python的tornado作为服务器,
python的tushare作为数据来源,
js的Highcharts 作为绘图工具。
我在tornado中定义了几个接口输出json数据。
现在问题出在项目中的range_k_line.html文件中,

问题主要是我想把获取到的数据声明为一个变量,但是用
jsom = $.getJSON('http://127.0.0.1:8888',).done(function(response) {
            //console.log(response); //here's your response
            //alert(typeof(response));
            console.log(response.responseText);
            return response.responseText;
                });

      console.log(jsom);
返回的却是一个对象。
我该怎么处理呢??
项目中的其他文件都是用上面的函数包裹起来,而这里,我想不用函数包裹起来,该怎么做呢??

wongyusing 发表于 2018-9-1 13:59:50

已解决,方法如下
var json = (function() {
            var result;
            $.ajax({
                type:'GET',
                url:'http://127.0.0.1:8888',
                dataType:'json',
                async:false,
                success:function(data){
                  result = data;
                }
            });
            return result;
      })();

      console.log(json)
页: [1]
查看完整版本: 关于获取json数据的问题