微信小程序使用post方式传参

时间:2025-04-02 15:34:48

需要注意的是method是get方式的时候,header为{"Content-Type": 'application/json'},当method为post时,header为{"Content-Type": "application/x-www-form-urlencoded"}

post方式传递的参数需要转换

1。js中

var util= require( '../../utils/');

page({

loginSubmit: function(e){
(),
(),
({
url: 'http://127.0.01:8000/runxiang_yiyao/Mobile/Index/login',
method: 'post',
data: util.json2Form({
username: ,
password: ,
}),

header: {
"Content-Type": "application/x-www-form-urlencoded"
},
success: function (res) {
()
// (res)
}
})
}

})


2. 在util中定义函数json2Form

function json2Form(json) {
var str = [];
for ( var p in json) {
(encodeURIComponent(p) + "=" + encodeURIComponent(json[p]));
}
return ( "&");
}
module.exports.json2Form = json2Form