vue-resource怎么获取返回的data?
像jquery的ajax从后台获取数据时,可以直接data.msg,但是用这个vue-resource该怎么读取到返回的msg字符串呢?就是下方“登录失败”四个字,想替换成类似data.msg的东西,该怎么做呢?
methods: {
submitForm(formName) {
this.$refs[formName].validate((valid) => {
if (valid) {
var data = {
_token: "lKwaNM6vINbPsPWHFAX9fnDxCIWc73FGikUSRnq31",
username:this.ruleForm2.pass,
password:this.ruleForm2.checkPass
};
this.$http.post('/secure/signIn', data).then((response) => {
//success
this.$message({
message: '登录成功!',
type: 'success',
duration: '1000'
});
window.location.href = "http://test.administer/index#/homepage";
}, (response) => {
//failed
this.$message({
message: "登录失败",
type: 'error',
duration: '1200'
});
});
} else {
return false;
}
});
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)