小白一枚~
一个登陆注册页面,用vue写的,登陆按钮绑定的是login事件
login () {
var that = this;
//$qs.stringify传参转换格式
if(this.name != ''&& this.password !=''){
this.$ajax.post('http://localhost:8081/login',this.$qs.stringify({
name: that.name,
password: that.password,
})).then(res=>{
console.log(res.data.code); //这个没有打印出来
if(res.data.code == 1){
that.$message.success("验证通过");
setTimeout(function(){
that.$router.push("/mainnav")
},500)
} else{
that.$message.error("账号密码错误!")
}
})
} else{
this.$message.error("账号密码不能为空")
}
}
}
后端代码
//登陆
app.post('/login',function(req, res){
console.log('select name from student where student = "' + req.body.name + '"and password = "' + req.body.password + '"'); //这里也没有打印
sql.query('select name from student where student = "' + req.body.name + '"and password = "' + req.body.password + '"', function (err, row) {
if(err || row.length == 0) {
console.log(err);
res.send({code : 0});
} else {
res.send({code : 1});
}
});
});
控制台没有输出,就是感觉值都没有传过来,求各位大佬解答~
还有bodyParser.urlencoded 中设置extended为true和为false我查了一下说
This object will contain key-value pairs, where the value can be a string or array (when extended is false), or any type (when extended is true).
那是不是意味着我使用true比false要好?在我没有需要特定的类型的下。
http://localhost:8081/login 改成 http://localhost:3000/login
后台端口是3000