小程序Request的另類用法

小程序中惟一能發送網絡請求接口數據的是wx.request接口,固然這個接口存在諸多的限制,例如:10個併發請求限制,https限制(固然在開發階段是能夠關閉此限制),除了wx.request還有其餘方法能夠實現類型的功能嗎?固然是有的,這個思路也源於我以前看到的一篇文章,隨便筆記下來javascript

思路

使用雲開發來發送網絡請求並把數據返回給小程序端。還不瞭解的雲開發的同窗請速度移步到官方【雲開發html

新建一個http的雲函數

// 雲函數入口文件
const cloud = require('wx-server-sdk')
const axios = require('axios')
cloud.init()

// 雲函數入口函數
exports.main = async (event, context) => {
  const wxContext = cloud.getWXContext()
  const { method, url, data } = event;
  const res = await axios.request({
    method: method,
    url: url,
    data: data
  });

  return { code: 1, data: res.data } || {code: -1, msg: 'error', data: null}
}
複製代碼

小程序端二次封裝雲函數調用

async http(options = {}) {
	return wx.cloud.callFunction({
		name: 'http',
		data: {
			method: options.method || 'GET',
			url: options.url || '',
			data: options.data || {}
		}
	}).then(res => {
		return res.result
	})
},
複製代碼

小程序端使用

async onLoad() {
    this.http({
      method: 'GET',
      url: 'https://www.baidu.com'
    }).then(res => {
      console.log(res)
    })
  },
複製代碼

總結

這種方法能夠很好繞過https的限制,固然這只是提供一個簡單的思路,咱們能夠進一步細一點封裝,包括配置header proxy 等等功能,其實原理就是藉助雲函數作了二次轉發,性能上確定比不上原生的requestjava

注意

async 和 await 語法糖在最新的開發工具中已經實現了,開啓加強編譯便可使用,具體更新內容請移步官方社區 微信小程序社區ios

相關文章
相關標籤/搜索