uniapp 配置跨域 request:fail abort statusCode:-1 Expected URL scheme ‘http‘ or ‘https‘ but was ‘file‘

需要请求的url:

http://192.168.0.80:8082/api/Advertising/slideShow?type=1

1.源码试图配置代理
在这里插入图片描述

		"devServer" : {
			"https" : false,
			"port" : 3650,
			
            "disableHostCheck" : true,
			"proxy": {  
				"/api": {  
					"target": "http://192.168.0.80:8082",// 需要跨域去请求的域名(接口地址)
					"changeOrigin": true,   
					"secure": false,
					"pathRewrite": {
						"^/api": "/api" //匹配请求路径里面有 /api 替换成 https://www.xxx.cn 
					}  
				}  
			} 
			
		}

http.interceptor.js

为H5 APP单独配置域名

// 这里的vm,就是我们在vue文件里面的this,所以我们能在这里获取vuex的变量,比如存放在里面的token变量
const install = (Vue, vm) => {
	// 此为自定义配置参数,具体参数见上方说明
	Vue.prototype.$u.http.setConfig({

		// #ifdef H5
		baseUrl: "",
		// #endif
		// #ifdef APP-PLUS ||MP
		baseUrl: "http://192.168.0.80:8082",
		// #endif
		loadingText: '努力加载中~',
		loadingTime: 800,
		// ......
	});

	// 请求拦截,配置Token等参数
	Vue.prototype.$u.http.interceptor.request = (config) => {
		// 引用token
		// 方式一,存放在vuex的token,假设使用了uView封装的vuex方式
		// 见:https://uviewui.com/components/globalVariable.html
		// config.header.token = vm.token;

		// 方式二,如果没有使用uView封装的vuex方法,那么需要使用$store.state获取
		// config.header.token = vm.$store.state.token;

		// 方式三,如果token放在了globalData,通过getApp().globalData获取
		// config.header.token = getApp().globalData.username;

		// 方式四,如果token放在了Storage本地存储中,拦截是每次请求都执行的
		// 所以哪怕您重新登录修改了Storage,下一次的请求将会是最新值
		// const token = uni.getStorageSync('token');
		// config.header.token = token;
		config.header.Token = 'xxxxxx';

		// 可以对某个url进行特别处理,此url参数为this.$u.get(url)中的url值
		if (config.url == '/user/login') config.header.noToken = true;
		// 最后需要将config进行return
		return config;
		// 如果return一个false值,则会取消本次请求
		// if(config.url == '/user/rest') return false; // 取消某次请求
	}

	// 响应拦截,判断状态码是否通过
	Vue.prototype.$u.http.interceptor.response = (res) => {
		if (res.ErrCode == 0) {
			// res为服务端返回值,可能有code,result等字段
			// 这里对res.result进行返回,将会在this.$u.post(url).then(res => {})的then回调中的res的到
			// 如果配置了originalData为true,请留意这里的返回值
			return res;
		} else if (res.ErrCode == 201) {
			// 假设201为token失效,这里跳转登录
			vm.$u.toast('验证失败,请重新登录');
			setTimeout(() => {
				// 此为uView的方法,详见路由相关文档
				vm.$u.route('/pages/user/login')
			}, 1500)
			return false;
		} else {
			// 如果返回false,则会调用Promise的reject回调,
			// 并将进入this.$u.post(url).then().catch(res=>{})的catch回调中,res为服务端的返回值
			return false;
		}
	}
}

export default {
	install
}

demo.vue

	this.$u.get('/api/Advertising/slideShow', {
					type: 1
					
				}).then(res => {
					const {
						Response
					} = res
					this.bannerList = Response
					this.bannerList.forEach(v=>{
						v.image = this.$base+v.image
					})
					
				}).catch(err => {
					console.log(err)
				})
  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
根据提供的引用内容,es中报{"statusCode":400,"error":"Bad Request","message":"[request query.path]: Expected non-empty string"}的错误信息表明在请求中的query.path参数为空字符串,这是一个无效的请求。根据引用中的源码,请求的接口地址应该是"/api/Advertising/slideShow",但是在引用中的代码中,请求的路径被设置为"/api"。这可能是导致请求错误的原因之一。另外,根据引用中的描述,可能还需要考虑是否需要使用https协议而不是http协议来进行请求。请检查您的请求代码,并确保请求路径和参数正确配置。<span class="em">1</span><span class="em">2</span><span class="em">3</span> #### 引用[.reference_title] - *1* *2* [uniapp 配置跨域 request:fail abort statusCode:-1 Expected URL schemehttp‘ or ‘https‘ but was ...](https://blog.csdn.net/qq_42244911/article/details/123569348)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"] - *3* [ios uni.request请求报错{“errMsg“:“request:fail abort statusCode:-1“} 解决方法](https://blog.csdn.net/weixin_43771472/article/details/125990598)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"] [ .reference_list ]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值