您好,我正在尝试使用 json-server 来模拟我正在构建的 React Flux ES6 应用程序的 api。但是当我使用超级代理节点模块从动作创建者发出请求时,回调中的数据是未定义的
这是我的代码
import Dispatcher from '../Dispatcher';
import Constants from '../Constants';
import request from 'superagent';
export default {
setQuestions(guides) {
Dispatcher.handleViewAction({
type: Constants.ActionTypes.SET_QUESTIONS,
data: guides
});
},
getQuestionsFromServer() {
let self = this;
let destination = 'http://localhost:3000/questionnaires';
// request from json service.
request
.get(destination)
.set({
'X-Requested-With': 'XMLHttpRequest'
})
.end(function(response) {
// response is empty. why???
if (response.ok) {
let guideData;
guideData = response.body;
self.setQuestions(guideData);
}
});
}
};
我的网络选项卡显示请求发生,但我无法访问回调中的响应。