uniapp请求,使用x-www-form-urlencoded报错

uni.request({
	url: '',//被我删了接口
	header: { 
		'content-type': 'application/x-www-form-urlencoded'
	},
	method:'POST', //请求方式
	data:that.loginData,
	success: function(res) {
		console.log(res)
	}
})

在这里插入图片描述

一直报错500。
因为接口需要使用x-www-form-urlencoded,查了好久,才发现是这个header的问题。
header要放在前面,修改一下位置。

uni.request({					
	header: { 'content-type': 'application/x-www-form-urlencoded'},
	url: '',//被我删了接口
	method:'POST', //请求方式
	data:that.loginData,
	success: function(res) {
		console.log(res)
	}
})

在这里插入图片描述
200成功

如果本文帮助到你或对你有启发,点个赞再走呗

你可能感兴趣的:(笔记,javascript,uni-app)