1. 程式人生 > >微信小程式method:post報錯

微信小程式method:post報錯

按照官方文件,我們客戶端發起post請求的程式碼如下:

  t:function() {

  wx.request({

    url: url,

    data: {"text":"123"

   },

    method: 'POST', 

    success: function(res){

    console.log(JSON.stringify(res));

    }

   })

  },

然後一直報錯

這時候你加上header: {"Content-Type":"application/x-www-form-urlencoded"},就不報錯了