微信小程序post请求数据传送不出去

methodget 方式的时候,header

{"Content-Type": 'application/json'}

methodpost 时,header

{"Content-Type": "application/x-www-form-urlencoded"}

wx:request

wx.request({
	url: 'http://...www/runxiang_yiyao/Mobile/Index/login',
	method: 'post',
	data: util.json2Form({
	username: e.detail.value.username,
	password: e.detail.value.password,
	}),
	
	header: {
	"Content-Type": "application/x-www-form-urlencoded"
	},
	success: function (res) {
		console.log(util.formatTime)
		// console.log(res)
	}
})

参考:微信小程序wx.request 使用 post方式传参

你可能感兴趣的:(小程序,微信小程序,小程序)