uni-app封装小程序wx.request,然后挂载到全局
首先 在src目录下创建一个request/request.js,内容如下
let baseURL = "https://dfft.dsnddvideo.cn/wogds" export const http = (options) =>{ return new Promise((resolve,reject) => { wx.request({ url: baseURL+options.url, method:options.method || 'get', data:options.data || {}, header: options.header || { 'content-type':'application/x-www-form-urlencoded' }, success:resolve, fail:reject }) }) }
然后在main.js中引入
import { http } from "./request/request.js"
Vue.prototype.$http = http
在页面中使用,如
this.$http({
url:'/jdsve/applets/queryseData',
method:'post',
data:{
scene:'hhffs'
}
}).then(res=>{
console.log('sss',res)
})
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步