微信小程序,使用访问服务器,无法传递参数的问题

时间:2025-04-02 15:32:16

分析问题在哪里

  1. ({
  2. url: '', //仅为示例,并非真实的接口地址
  3. data: {
  4. x: '',
  5. y: ''
  6. },
  7. header: {
  8. 'content-type': 'application/json' // 默认值
  9. },
  10. success (res) {
  11. (res.data)
  12. }
  13. })

这个是官方文档给出的例子,不能直接拿来用!
注意这几个问题:

服务器端在设计时使用的是什么方式接收数据,GET?还是POST?
上述代码的method未填写,说明走的是默认方式
注意method的默认是GET

再考虑:
POST传递数据有四种方式,

text/xml
application/json
multipart/form-data
application/x-www-form-urlencoded

这个也需要填写清楚。

善用文档和Google