时间:2021-05-26
每个项目网络请求接口封装都是很重要的一块,第一次做Vue项目,我们的封装方法如下:
(1).新建一个js文件,取名api.js
(2).引入 axios ,mint-UI ,如下图:
import axios from 'axios'import {MessageBox, Toast} from 'mint-ui'axios.defaults.timeout = 50000//默认请求超时时间axios.defaults.headers = '请求头'(2).封装get方法
export function getHttp (url, params = {}) { // 创建动画mint-ui Indicator.open({ text: '加载中...', spinnerType: 'fading-circle' }) return new Promise((resolve, reject) => { axios.get(url, { params: params }) .then(response => { resolve(response.data) Indicator.close() // // 关闭动画 }) .catch(err => { reject(err) Indicator.close() // // 关闭动画 MessageBox.alert('message', err) }) })}(4).封装post方法
export function postHttp (url, data = {}) { Indicator.open({ text: '加载中...', spinnerType: 'fading-circle' }) return new Promise((resolve, reject) => { axios.post(url, data) .then(response => { if (response.data.status == 1) { resolve(response.data) } else { Toast(response.data.msg) } Indicator.close() // // 关闭动画 }, (err) => { reject(err) Indicator.close() }) })}(5).封装后方法的使用
在main.js中引入全局变量
import {getHttp, postHttp} from './config/api'Vue.prototype.$getHttp = getHttpVue.prototype.$postHttp = postHttp//get网络请求 this.$getHttp(this.$shopUrl + 'api/product/list',) .then((response) => { response.result//请求返回数据 }) // post网络请求 this.$postHttp(this.$shopUrl + 'api/product/list',) .then((response) => { response.result//请求返回数据 })以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
最近在学习Vue,今天尝试了使用axios模拟本地网络请求。使用的过程中发现接口请求一直404,后来发现在当期的Vue-cli构建的最新的项目中,接口请求应该这
需求点击导出下载表格对应的excel文件在vue项目中,使用的axios,后台java提供的post接口api实现第一步,在axios请求中加入参数,表示接收的
本文介绍了webpack+vuex+axios跨域请求数据的示例代码,分享给大家,具体如下:使用vue-li构建webpack项目,修改bulid/config
本项目是vue-cli搭建的项目框架,引入axios用于数据请求。配置不同的接口地址,(首先确保已经集成了axios,如对集成axios有疑问的道友,可参看我之
一、axios的封装在vue项目中,和后台交互获取数据这块,我们通常使用的是axios库,它是基于promise的http库,可运行在浏览器端和node.js中