uniapp的一些知识

1,封装request.js

let baseURL = '';
let token = ""
let white =['']
export const myRequest = (options) => {
	uni.showLoading({title:"加载中......"})
	return new Promise((resolve, reject) => {
		uni.request({
			url: baseURL + options.url, //接口地址:前缀+方法中传入的地址
			method: options.method || 'GET', //请求方法:传入的方法或者默认是“GET”
			data: options.data || {}, //传递参数:传入的参数或者默认传递空集合
			header: {
				'Authorization': uni.getStorageSync('Token'), //自定义请求头信息
				'content-type': 'application/x-www-form-urlencoded',
			},
			success: (res) => {
				//返回的数据(不固定,看后端接口,这里是做了一个判断,如果不为true,用uni.showToast方法提示获取数据失败)
				if(res.statusCode === 401){  //token过期  或帐号其他原因401
					uni.reLaunch({
						url:'/pages/login/toLogin'
					});
					return
				}
				if (res.data.state.code !== "1" &&  !white.includes(options.url)) {
					return uni.showToast({
						title: res.data.state.msg,
						icon: 'none'
					})
				}
				// 如果不满足上述判断就输出数据
				resolve(res)
			},
			// 这里的接口请求,如果出现问题就输出接口请求失败
			fail: (err) => {
				uni.hideLoading();
				reject(err)
			},
			complete: () => {
				uni.hideLoading();
				typeof options.complete == "function" && options.complete(e.data);
				return;
			}
		})
	})
}

###
调用
import {Request} from './request.js'
 //获取验证码
export function getCode (data) {
	return Request({
		url:'api/login',
		method:'post',
		data
	})
}
###
token 在调用登录接口时存储
//

2 获取高度

uni.getSystemInfoSync().windowHeight
//uni-app 自定义导航栏
//pages.json中  style 自定义"navigationStyle":"custom"
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值