为什么我的request不能发起post请求?
```js
wx.request({
url: url,
method: ‘POST’,
success: function() { }
})
```
上面的代码,明明指定了是 post,但是发起的确实 get 请求,是怎么回事,改成 put 或者 delete 之类的都正常,改成 post 就会发起 get 请求。
```js
wx.request({
url: url,
method: ‘POST’,
success: function() { }
})
```
上面的代码,明明指定了是 post,但是发起的确实 get 请求,是怎么回事,改成 put 或者 delete 之类的都正常,改成 post 就会发起 get 请求。