想实现前端发送注册的账号密码数据通过Post请求给后台,但是后台该咋写啊。我一点注册,它就提示报错说“Cannot POST /”
这是我的vue.js前端代码
register(){ if(this.username == ''|| this.password == ''){ alert('请输入用户名或密码') }else{ let data = {'username':this.username,'password':this.password} this.$axios.post('/register/qian',data) .then((res)=>{ console.log(res) this.$router.push('register') }) } }
这是node.js后台的,用了express 和 mongoose
router.post('/register/qian',function(req,res){
req.on('data',function(data){ obj=JSON.parse(data) console.log(obj) res.send('数据已接受') })
})
哔哔one
相关分类