我正在尝试渲染几个组件 - 但我的服务是来自灯堆。 - 渲染组件后,我尝试做一个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"}]
反应器上的代码 - getjson执行回调