1. 程式人生 > >小程式 後臺資料請求

小程式 後臺資料請求

wx.request({
  url: 'test.php'//僅為示例,並非真實的介面地址
  data: {
     x: '' ,
     y: ''
  },
  header: {
      'content-type''application/json'
  },
  success: function(res{
    console.log(res.data)
  }
})

data 資料說明 最終傳送給伺服器的資料是 String 型別,如果傳入的 data 不是 String 型別,會被轉換成 String 。轉換規則如下:

  • 對於 header['content-type'] 為 'application/json' 的資料,會對資料進行 JSON 序列化
  • 對於 header['content-type'] 為 'application/x-www-form-urlencoded' 的資料,會將資料轉換成 query string (encodeURIComponent(k)=encodeURIComponent(v)&encodeURIComponent(k)=encodeURIComponent(v)...)