【微信小程序】request请求POST提交数据,记得要加上header

时间:2017-11-02 18:15:42   收藏:0   阅读:346
          wx.request({
            url: ‘*******‘,
            data: {
              "type":"nearest_village",
              "district": that.data.district,
            },
            header: {
              "Content-Type": "application/x-www-form-urlencoded"
            },
            method: ‘POST‘,
            success: function(res) {
            //do somethind
           }    
         })

一定要带上header,否则数据提交为空。

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!