React + Crossdomain问题

时间:2016-08-23 19:21:59

标签: reactjs cross-domain

我正在尝试渲染几个组件 - 但我的服务是来自灯堆。 - 渲染组件后,我尝试做一个ajax调用 - 我可以看到调用在网络控制台中回来了 - 但警报从未被触发 - 我也尝试过ajax方法。

componentDidMount() {
    $.getJSON("http://localhost/react4/sample.json?callback=?", function(result){
       //response data are now in the result variable
       alert(result);
    });
}

// sample.json

[{"date": "2nd Aug"}]

网络数据包屏幕截图 - 来自localhost的调用和响应 enter image description here

网络数据包的成功 enter image description here

localhost - 灯堆运行 - 虚拟json通过 enter image description here

反应器上的代码 - getjson执行回调

enter image description here

没有控制台错误 - 没有警报 enter image description here

添加控制台标志 enter image description here

只显示check1 - 好像响应永远不会回来 enter image description here

0 个答案:

没有答案