如何在React中做Ajax 请求
1 回答
30秒到达战场
TA贡献1828条经验 获得超6个赞
setTimeout(function () {
callback({username: 'xxx', age: 10});
}, 10);
}
var App = React.createClass({
getInitialState: function () {
return {data: {}};
},
handleSubmit: function (model) {
console.log(model);
//TODO
},
componentDidMount: function () {
loadCommentsFromServer('url', {}, function (data) {
this.setState({
data: data
});
}.bind(this));
},
render: function () {
- 1 回答
- 0 关注
- 738 浏览
添加回答
举报
0/150
提交
取消