wip-登录调试

This commit is contained in:
Huang 2022-06-10 18:03:07 +08:00
parent 76afc21f12
commit b75f8cb143
11 changed files with 113 additions and 62 deletions

View File

@ -30,14 +30,14 @@
});
};
import { defHttp } from '@/utils/http/index';
import { request } from '@/utils/http/index';
const form = reactive({
email: 'catch@admin.com',
password: 'catchadmin',
});
const loginType = ref('');
const submit = () => {
defHttp
request
.post<Data>('/login', form)
.then((res) => {
loginType.value = '登录成功';

View File

@ -18,7 +18,7 @@
<script setup lang="ts">
import { reactive, ref } from 'vue';
import { defHttp } from '@/utils/http/index';
import { request } from '@/utils/http/index';
import { useUserStore } from '@/state/modules/user';
const form = reactive({
email: 'catch@admin.com',
@ -28,18 +28,19 @@
const token = ref<string>('');
const userStore = useUserStore();
const submit = () => {
defHttp
.post('/login', form)
.then((res: any) => {
loginType.value = '登录成功';
console.log(res);
userStore.setToken(res.data.token);
token.value = userStore.getToken;
})
.catch((err: any) => {
loginType.value = '登录失败';
console.log(err.message);
});
userStore.login(form);
// request
// .post('/login', form)
// .then((res: any) => {
// loginType.value = '';
// console.log(res);
// userStore.setToken(res.data.token);
// token.value = userStore.getToken;
// })
// .catch((err: any) => {
// loginType.value = '';
// console.log(err.message);
// });
};
</script>

7
src/services/api/user.ts Normal file
View File

@ -0,0 +1,7 @@
import { request } from '@/utils/http';
const LOGIN = '/login';
export function login(params: LoginParams) {
return request.post<API<LoginModel>>(LOGIN, params);
}

5
src/services/model/baseModel.d.ts vendored Normal file
View File

@ -0,0 +1,5 @@
declare interface API<T> {
code: number;
data?: T;
message: string;
}

7
src/services/model/user.d.ts vendored Normal file
View File

@ -0,0 +1,7 @@
declare interface LoginParams {
email: string;
password: string;
}
declare interface LoginModel {
token: string;
}

View File

@ -2,7 +2,8 @@ import { getPkgVersion, isDevMode } from '@/utils/env';
// System default cache time, in seconds
export const DEFAULT_CACHE_TIME = 60 * 60 * 24 * 7;
const PREFIX = import.meta.env.VITE_APP_CACHE_PREFIX || 'UNI_APP_VUE3_TS';
const PREFIX =
import.meta.env.VITE_APP_CACHE_PREFIX || import.meta.env.VITE_APP_TITLE || 'UNI_APP_VUE3_TS';
export const DEFAULT_PREFIX_KEY = `${PREFIX}${getPkgVersion()}`;
// aes encryption key

View File

@ -1,6 +1,7 @@
import { defineStore } from 'pinia';
import { getCache, setCache } from '@/utils/catch';
import { TOKEN_KEY } from '@/enums/cacheEnum';
import { login } from '@/services/api/user';
interface UserState {
token?: string;
@ -19,5 +20,17 @@ export const useUserStore = defineStore({
setCache(TOKEN_KEY, token);
this.token = token;
},
/**
* @description
*/
async login(params: LoginParams): Promise<LoginModel> {
try {
const { data } = await login(params);
this.setToken(data.token);
return Promise.resolve(data);
} catch (err: any) {
return Promise.reject(err);
}
},
},
});

16
src/types/http.d.ts vendored
View File

@ -22,6 +22,11 @@ export interface RequestTask {
offHeadersReceived: () => void;
onHeadersReceived: () => void;
}
export interface CustomConfig {
auth?: boolean;
loading?: boolean;
}
export interface HttpRequestConfig<T = Tasks> extends Record<string, any> {
/** 请求基地址 */
baseURL?: string;
@ -59,7 +64,7 @@ export interface HttpRequestConfig<T = Tasks> extends Record<string, any> {
/** 设置响应的数据类型,支付宝小程序不支持 */
responseType?: 'text' | 'arraybuffer';
/** 自定义参数 */
custom?: AnyObject;
custom?: CustomConfig;
/** 超时时间仅微信小程序2.10.0)、支付宝小程序支持 */
timeout?: number;
/** DNS解析时优先使用ipv4仅 App-Android 支持 (HBuilderX 2.8.0+) */
@ -108,7 +113,14 @@ export interface HttpInterceptorManager<V, E = V> {
forEach(h: any): void;
}
export type InterceptorsRequest = HttpInterceptorManager<HttpRequestConfig, HttpRequestConfig>;
export interface InterceptorsRequestConfig {
config: HttpRequestConfig;
}
export type InterceptorsRequest = HttpInterceptorManager<
InterceptorsRequestConfig,
InterceptorsRequestConfig
>;
export type InterceptorsResponse = HttpInterceptorManager<HttpSuccess, HttpError>;
export interface Interceptors {

View File

@ -25,7 +25,7 @@ export default {
// #ifdef APP-PLUS
firstIpv4: false,
// #endif
validateStatus: function validateStatus(status: Number) {
validateStatus: function validateStatus(status: number) {
return status >= 200 && status < 300;
},
} as HttpRequestConfig;

View File

@ -1,5 +1,10 @@
import Request from './core/Request';
import { getCache } from '@/utils/catch';
import { TOKEN_KEY } from '@/enums/cacheEnum';
import { assign } from 'lodash-es';
import { error } from '@/utils/log';
import { HttpSuccess } from '@/types/http';
import { Toast } from '@/utils/uniApi';
const BASE_URL = import.meta.env.VITE_BASE_URL;
const HEADER = {
@ -7,71 +12,60 @@ const HEADER = {
Accept: 'application/json, text/plain, */*',
};
const getTokenStorage = () => {
let token = '';
try {
token = uni.getStorageSync('token');
} catch (e) {}
return token;
};
const TOKEN = () => getCache<string>(TOKEN_KEY) || undefined;
function createRequest() {
return new Request({
baseURL: BASE_URL,
header: HEADER,
custom: {
auth: true,
},
});
}
const defHttp = createRequest();
// defHttp.setConfig((config) => { /* 设置全局配置 */
// config.header = {
// ...config.header,
// a: 1, // 演示
// b: 2 // 演示
// }
// return config
// })
const request = createRequest();
/**
*
*/
defHttp.interceptors.request.use(
(config) => {
config.header = assign(config.header, {
token: getTokenStorage(),
});
console.log('interceptors.request', config);
/*
if (!token) { // 如果token不存在return Promise.reject(config) 会取消本次请求
return Promise.reject(config)
}
*/
return config;
request.interceptors.request.use(
(options) => {
const { config } = options;
const token = TOKEN();
if (config.custom?.auth) {
if (!token) {
// token不存在跳转到登录页
// return Promise.reject(options);
}
config.header = assign(config.header, {
authorization: `Bearer ${token}`,
});
}
return options;
},
(config) => {
return Promise.reject(config);
(options) => {
return Promise.reject(options);
},
);
/**
*
*/
defHttp.interceptors.response.use(
async (response) => {
/* 请求之后拦截器。可以使用async await 做异步操作 */
// if (response.data.code !== 200) { // 服务端返回的状态码不等于200则reject()
// return Promise.reject(response)
// }
console.log('响应===', response);
return response;
request.interceptors.response.use(
async (response: HttpSuccess<API<any>>) => {
const { data: resData } = response;
const { code, message, data } = resData;
if (code === 10000) {
return resData as any;
}
Toast(message);
return Promise.reject(resData);
},
(response) => {
// 请求错误做点什么。可以使用async await 做异步操作
console.log(response);
error('Request Error!');
return Promise.reject(response);
},
);
export { defHttp };
export { request };

11
src/utils/uniApi.ts Normal file
View File

@ -0,0 +1,11 @@
export function Toast(title: string, options?: Partial<UniApp.ShowToastOptions>) {
uni.showToast({
title: title,
duration: 1500,
icon: 'none',
...options,
});
}
export function hideToast() {
uni.hideToast();
}