设置header的Content-Type为 application/x-www-form-urlencoded 即可
javascript
uni.request({
url: '', // 接口url
data: {
input: '写一篇一千字的作文'
}, // 入参
method: 'POST', // 参数类型
header: {
"Content-Type": "application/x-www-form-urlencoded"
}, // 请求头
success: (res) => {
console.log(res, 'hhhhhhhhhhhhh')
},
complete: () => {},
fail: (res) => {}
})
这世界很喧嚣,做你自己就好