微信小程序封装http(request)
2021/10/13 1:15:35
本文主要是介绍微信小程序封装http(request),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
在小程序开发管理界面配置域名
点击详情查看域名信息
在utils下创建http.js
function request(options) { // 请求拦截器 // ... // 1. 加一些统一的参数,或者配置 if (!options.url.startsWith("https://") && !options.url.startsWith("http://")) { options.url = "https://showme2.myhope365.com" + options.url } // 默认的请求头 let header = { "content-type": "application/x-www-form-urlencoded", // 加上统一的cookie "cookie": wx.getStorageSync("cookie") || "" }; if (options.header) { header = { ...header, ...options.header } } return new Promise((reslove, reject) => { // 调用接口 wx.request({ // 默认的配置 // 加载传入的配置 ...options, header, success(res) { // 响应拦截器,所有接口获取数据之前,都会先执行这里 // 1. 统一的错误处理 if (res.statusCode != 200) { wx.showToast({ title: '服务器异常,请联系管理员', }) } reslove(res) }, fail(err) { reject(err) } }) }) } export function get(url, options = {}) { return request({ url, ...options }) } export function post(url, data, options = {}) { return request({ url, data, method: "POST", ...options }) }
使用post
引入
import { post } from "../../utils/http";
post('https://showme2.myhope365.com/api/login', { username:this.data.userName, password:this.data.passWord, rememberMe:true } ).then(res => { console.log(res); })
get
引入
import { get } from "../../utils/http";
get(`https://showme2.myhope365.com/api/cms/article/open/detail/${options.id}`).then(res => { console.log(res.data.data); this.setData({ content: res.data.data }) })
这篇关于微信小程序封装http(request)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-13微信小程序如何封装接口域名?-icode9专业技术文章分享
- 2024-11-13如何在微信小程序中实现直传功能?-icode9专业技术文章分享
- 2024-11-13如何在小程序的地图组件中添加标记和文字?-icode9专业技术文章分享
- 2024-11-13在微信小程序的地图组件中如何实现自定义标记和气泡?-icode9专业技术文章分享
- 2024-11-01微信小程序教程:零基础入门到实战
- 2024-11-01微信小程序全栈教程:从入门到实践
- 2024-10-31微信小程序怎么实现关注公众号功能-icode9专业技术文章分享
- 2024-10-30微信小程序cover-view,支持bindtap吗-icode9专业技术文章分享
- 2024-10-30微信小程序的cover-image支持bindtap吗-icode9专业技术文章分享
- 2024-10-30微信小程序web-view怎么设置高度?-icode9专业技术文章分享