0
点赞
收藏
分享

微信扫一扫

uni.request post请求后端获取不到数据

是她丫 2022-03-12 阅读 82

传递参数到后端,后端却获取不到前端数据

uni.request({
			method:'POST',
			url: "http://127.0.0.1:3000/api/login",
			data:{
				username: this.username,
				password: this.password
			},
			success:(res)=> {
				console.log(res);
			}
		})

解决方式:

设置请求头Content-type
header:{
	'Content-type':'application/x-www-form-urlencoded'
},
举报

相关推荐

0 条评论