uni-app系列(五):uniapp 引入 axios 注意:withCredentials允许获取cookie 和后端配置的跨域不可同时使用

   日期:2020-09-07     浏览:805    评论:0    
核心提示:uni-app系列(一):安装开发工具 HBuilderx 并创建 uniapp 项目43/100发布文章Mrs_chensnew????摘要今天分享下 —— uni-app系列(一):安装开发工具 的一些基本知识,欢迎关注!????安装 axios首先检查是否安装 npm 工具:工具 --> 插件安装检查是否安装 npm,如果没有可以去看我的这篇文章:windows安装node.js用npm安装vue安装后在当前目录下打开内置终端:(和前几步一样检查插件安装

摘要

今天分享下 —— uni-app系列(一):安装开发工具 的一些基本知识,欢迎关注!

欢迎阅读,总结系列:野蛮生长的 uni-app 学习之路

安装 axios

  1. 首先检查是否安装 npm 工具:工具 --> 插件安装

  2. 检查是否安装 npm,如果没有可以去看我的这篇文章:windows安装node.js用npm安装vue

  3. 安装后在当前目录下打开内置终端:(和前几步一样检查插件安装与否)

  4. 在终端输入:npm install axios 安装 axios

  5. 安装后如下所示:(node_modules 出现 axios)

uniapp 项目配置 axios

  1. 创建 utils 文件按自己所需创建 .js 文件
  2. 引入 axios
import Vue from 'vue'
import axios from 'axios'
  1. 配置如下:(注意:withCredentials允许获取cookie 和后端配置的跨域不可同时使用,会报错哦提醒你了!)
import Vue from 'vue'
import axios from 'axios'

// create an axios instance
const service = axios.create({
	baseURL: 'https://www.yongjiachen.top/jccrm', // url = base url + request url
	//withCredentials: true, // send cookies when cross-domain requests 注意:withCredentials和后端配置的cross跨域不可同时使用
	timeout: 6000, // request timeout
	crossDomain: true
})

// request拦截器,在请求之前做一些处理
service.interceptors.request.use(
    config => {
        // if (store.state.token) {
        // // 给请求头添加user-token
        // config.headers["user-token"] = store.state.token;
        // }
        console.log('请求拦截成功')
        return config;
    },
    error => {
        console.log(error); // for debug
        return Promise.reject(error);
    }
); 

//配置成功后的拦截器
service.interceptors.response.use(res => {
    if (res.data.status== 200) {
        return res.data
    } else {
        return Promise.reject(res.data.msg);
    }
}, error => {
	if (error.response.status) {
		switch (error.response.status) {
			case 401:
				break;
			default:
				break;
		}
	}
    return Promise.reject(error)
})


// 在main.js中放入这段自定义适配器的代码,就可以实现uniapp的app和小程序开发中能使用axios进行跨域网络请求,并支持携带cookie
axios.defaults.adapter = function(config) { 
    return new Promise((resolve, reject) => {
        console.log(config)
        var settle = require('axios/lib/core/settle');
        var buildURL = require('axios/lib/helpers/buildURL');
        uni.request({
            method: config.method.toUpperCase(),
            url: config.baseURL + buildURL(config.url, config.params, config.paramsSerializer),
            header: config.headers,
            data: config.data,
            dataType: config.dataType,
            responseType: config.responseType,
            sslVerify: config.sslVerify,
            complete: function complete(response) {
                console.log("执行完成:",response)
                response = {
                    data: response.data,
                    status: response.statusCode,
                    errMsg: response.errMsg,
                    header: response.header,
                    config: config
                };

                settle(resolve, reject, response);
            }
        })
    })
}

export default service
  1. 在项目根目录的 main.js 配置引入全局 axios
// 引入封装后的axios
import axios from './utils/request/request.js'

Vue.prototype.$axios = axios
  1. 愉快的使用 axios
  2. 效果图:

最后感谢大家耐心观看完毕,原创不易,六个点赞收藏是您对我最大的鼓励!

最后

  • 更多参考精彩博文请看这里:《陈永佳的博客》

  • 喜欢博主的小伙伴可以加个关注、点个赞哦,持续更新嘿嘿!

 
打赏
 本文转载自:网络 
所有权利归属于原作者,如文章来源标示错误或侵犯了您的权利请联系微信13520258486
更多>最近资讯中心
更多>最新资讯中心
0相关评论

推荐图文
推荐资讯中心
点击排行
最新信息
新手指南
采购商服务
供应商服务
交易安全
关注我们
手机网站:
新浪微博:
微信关注:

13520258486

周一至周五 9:00-18:00
(其他时间联系在线客服)

24小时在线客服