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({ const form = reactive({
email: 'catch@admin.com', email: 'catch@admin.com',
password: 'catchadmin', password: 'catchadmin',
}); });
const loginType = ref(''); const loginType = ref('');
const submit = () => { const submit = () => {
defHttp request
.post<Data>('/login', form) .post<Data>('/login', form)
.then((res) => { .then((res) => {
loginType.value = '登录成功'; loginType.value = '登录成功';

View File

@ -18,7 +18,7 @@
<script setup lang="ts"> <script setup lang="ts">
import { reactive, ref } from 'vue'; import { reactive, ref } from 'vue';
import { defHttp } from '@/utils/http/index'; import { request } from '@/utils/http/index';
import { useUserStore } from '@/state/modules/user'; import { useUserStore } from '@/state/modules/user';
const form = reactive({ const form = reactive({
email: 'catch@admin.com', email: 'catch@admin.com',
@ -28,18 +28,19 @@
const token = ref<string>(''); const token = ref<string>('');
const userStore = useUserStore(); const userStore = useUserStore();
const submit = () => { const submit = () => {
defHttp userStore.login(form);
.post('/login', form) // request
.then((res: any) => { // .post('/login', form)
loginType.value = '登录成功'; // .then((res: any) => {
console.log(res); // loginType.value = '';
userStore.setToken(res.data.token); // console.log(res);
token.value = userStore.getToken; // userStore.setToken(res.data.token);
}) // token.value = userStore.getToken;
.catch((err: any) => { // })
loginType.value = '登录失败'; // .catch((err: any) => {
console.log(err.message); // loginType.value = '';
}); // console.log(err.message);
// });
}; };
</script> </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 // System default cache time, in seconds
export const DEFAULT_CACHE_TIME = 60 * 60 * 24 * 7; 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()}`; export const DEFAULT_PREFIX_KEY = `${PREFIX}${getPkgVersion()}`;
// aes encryption key // aes encryption key

View File

@ -1,6 +1,7 @@
import { defineStore } from 'pinia'; import { defineStore } from 'pinia';
import { getCache, setCache } from '@/utils/catch'; import { getCache, setCache } from '@/utils/catch';
import { TOKEN_KEY } from '@/enums/cacheEnum'; import { TOKEN_KEY } from '@/enums/cacheEnum';
import { login } from '@/services/api/user';
interface UserState { interface UserState {
token?: string; token?: string;
@ -19,5 +20,17 @@ export const useUserStore = defineStore({
setCache(TOKEN_KEY, token); setCache(TOKEN_KEY, token);
this.token = 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; offHeadersReceived: () => void;
onHeadersReceived: () => void; onHeadersReceived: () => void;
} }
export interface CustomConfig {
auth?: boolean;
loading?: boolean;
}
export interface HttpRequestConfig<T = Tasks> extends Record<string, any> { export interface HttpRequestConfig<T = Tasks> extends Record<string, any> {
/** 请求基地址 */ /** 请求基地址 */
baseURL?: string; baseURL?: string;
@ -59,7 +64,7 @@ export interface HttpRequestConfig<T = Tasks> extends Record<string, any> {
/** 设置响应的数据类型,支付宝小程序不支持 */ /** 设置响应的数据类型,支付宝小程序不支持 */
responseType?: 'text' | 'arraybuffer'; responseType?: 'text' | 'arraybuffer';
/** 自定义参数 */ /** 自定义参数 */
custom?: AnyObject; custom?: CustomConfig;
/** 超时时间仅微信小程序2.10.0)、支付宝小程序支持 */ /** 超时时间仅微信小程序2.10.0)、支付宝小程序支持 */
timeout?: number; timeout?: number;
/** DNS解析时优先使用ipv4仅 App-Android 支持 (HBuilderX 2.8.0+) */ /** DNS解析时优先使用ipv4仅 App-Android 支持 (HBuilderX 2.8.0+) */
@ -108,7 +113,14 @@ export interface HttpInterceptorManager<V, E = V> {
forEach(h: any): void; 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 type InterceptorsResponse = HttpInterceptorManager<HttpSuccess, HttpError>;
export interface Interceptors { export interface Interceptors {

View File

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

View File

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