微信小程式API 發起請求
wx.request(OBJECT)
wx.request發起的是https請求。 一個微信小程序,同時只能有5個網路請求連線。
OBJECT參數說明:
範例程式碼:
wx.request({ url: 'test.php', data: { x: '' , y: '' }, header:{ "Content-Type":"application/json" }, success: function(res) { var data = res.data; } });