我正在开发一个具有登录功能的简单应用程序,但无法将用户名和密码正确发送到nodejs服务器。我曾尝试对其进行编码,将其作为Map和FormData进行编码,但是似乎没有什么需要锻炼的。我在控制台上记录了请求正文,并显示“ undefind”
我正在使用Dio dart软件包发出http请求,并使用Redux和redux thunk来分派动作。 //我的Flutter应用上的代码
ThunkAction<AppState> login(LoginData data) {
return (Store<AppState> store) async {
store.dispatch(IsLoading(true));
try {
Response response = await Dio().post(
"http://10.0.2.2:4000/api/user/login",
data: json.encode({"phone": data.phone, "password": data.password}));
if (response.statusCode == 200) {
print(json.decode(response.data));
store.dispatch(IsLoading(false));
}
} catch (e) {
print("Error :(");
}
};
}
// Code on My nodejs
router.post("/login", (req, res) => {
//this log prints undefined
console.log("Login route: " + req.body.phone);
var cred = {
phone: req.body.phone,
password: req.body.password
};
User.findOne({ phone: cred.phone })
.then(result => {
if (!result) {
res.status(400).json({ msg: "no user" });
} else {
bcrypt.compare(req.body.password, result.password, (err, isMatch) => {
if (isMatch) {
const payload = { id: result._id };
console.log("Logged in :" + payload);
jwt.sign(
payload,
keys.secretOrKey,
{ expiresIn: 7200 },
(err, token) => {
res.status(200).json({
success: true,
token: "Bearer " + token
});
}
);
} else {
res.status(400).json({ msg: err });
}
});
}
})
.catch(err => {
res.status(400).json({ msg: err });
});
});
答案 0 :(得分:1)
要访问服务器端的参数,请将此标头添加到您的请求中:
HttpHeaders.contentTypeHeader: 'application/x-www-form-urlencoded'