2 、自动化产生model
vscode extension : json2ts
// {
// “slideshow”: {
// “author”: “Yours Truly”,
// “date”: “date of publication”,
// “slides”: [
// {
// “title”: “Wake up to WonderWidgets!”,
// “type”: “all”
// },
// {
// “items”: [
// “Why WonderWidgets are great”,
// “Who buys WonderWidgets”
// ],
// “title”: “Overview”,
// “type”: “all”
// }
// ],
// “title”: “Sample Slide Show”
// }
// }
export interface Slide {
title: string;
type: string;
}
export interface Slideshow {
author: string;
date: string;
slides: Slide[];
title: string;
}
export interface RootObject {
slideshow: Slideshow;
}
3、请求时获得转换
import https from “./http”;
import { RootObject } from “./model”;
https.request(‘/json’).then((res)=>{
console.log(res?.slideshow);
})
配置基于AxiosRequestConfig类,扩展新增默认参数和间隔时间
export interface HttpClientConfig extends AxiosRequestConfig {
//所有请求可以带默认参数
defaultParams?: RequestParams,
//click interval (点击间隔时间)
clickInterval?:number
}
读者反映很多人找不到拦截怎么加,其实暴露出了axiosInstance 实例, 参数名是httpClient
。
下面是完整例子
/*
-
@Description: httpClient
-
@Author: ZY
-
@Date: 2020-12-11 13:42:27
-
@LastEditors: ZY
-
@LastEditTime: 2021-05-12 14:39:05
*/
import HttpClient, { HttpClientConfig } from ‘…/src/index’;
const config: HttpClientConfig = {
baseURL: ‘http://flash-admin.enilu.cn/prod-api’,
headers: {
token: ‘’,
},
};
const https = new HttpClient(config);
// Add a request interceptor
https.httpClient.interceptors.request.use(function (config) {
// Do something before request is sent
return config;
}, function (error) {
// Do something with request error
return Promise.reject(error);
最后
自我介绍一下,小编13年上海交大毕业,曾经在小公司待过,也去过华为、OPPO等大厂,18年进入阿里一直到现在。
深知大多数初中级Android工程师,想要提升技能,往往是自己摸索成长,自己不成体系的自学效果低效漫长且无助。
因此收集整理了一份《2024年Web前端开发全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友,同时减轻大家的负担。
既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,基本涵盖了95%以上Android开发知识点!不论你是刚入门Android开发的新手,还是希望在技术上不断提升的资深开发者,这些资料都将为你打开新的学习之门!
如果你觉得这些内容对你有帮助,需要这份全套学习资料的朋友可以戳我获取!!
由于文件比较大,这里只是将部分目录截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频,并且会持续更新!
提升的进阶课程,基本涵盖了95%以上Android开发知识点!不论你是刚入门Android开发的新手,还是希望在技术上不断提升的资深开发者,这些资料都将为你打开新的学习之门!**
如果你觉得这些内容对你有帮助,需要这份全套学习资料的朋友可以戳我获取!!
由于文件比较大,这里只是将部分目录截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频,并且会持续更新!