当我使用Request npm时,回调有问题。 我的项目是由Sailsjs开发的用户的API,另一方面我正在使用reactjs作为前端,我正在使用Request npm与API进行通信。 我在回调方面遇到了一些问题。
我的代码:
handleClick(event) {
var apiBaseUrl = "http://localhost:1337/user";
if (
this.state.first_name.length > 0 &&
this.state.last_name.length > 0 &&
this.state.email.length > 0 &&
this.state.password.length > 0
) {
request.post({url : apiBaseUrl + "/store", form :{
first_name: this.state.first_name,
last_name: this.state.last_name,
email: this.state.email,
password: this.state.password
}}, function(response) {
console.log(response);
if (response.data.code === 200) {
var loginscreen = [];
loginscreen.push(
<Login
parentContext={this}
appContext={this.props.appContext}
key = {rand}
/>
);
var loginmessage = "Not Registered yet.Go to registration";
this.props.parentContext.setState({
loginscreen: loginscreen,
loginmessage: loginmessage,
buttonLabel: "Register",
isLogin: true
});
} else {
console.log("some error ocurred", response.data.code);
}
});
} else {
alert("Input field value is missing");
}
}
帖子请求运行良好,当我检查数据库时,我发现用户已保存并且chrome中的网络onglet中的响应很好,但当我console.log(response)
时,它总是null
。我不知道我的回调是不对的,还是其他的东西。
后端
// Store user
store: function(req, res) {
var params = _.extend(req.query || {}, req.params || {}, req.body || {});
console.log(params);
UserService.store(params, function(err, user) {
if (err) return res.json();
if (!user) return res.json();
return res.send({
"code": 200,
"success": "user registered sucessfully"
});
});
},
你能帮我解决这个问题吗?
答案 0 :(得分:0)
实际上,问题在于你的回调,回调需要两个参数,它应该是这样的:
function(error, response) {.....}
错误是第一个参数,响应是第二个,因为没有错误,您获得了null
!并且响应被视为错误对象。