灵巧小白菜

文章
4
资源
0
加入时间
2年10月17天

JS 判断是否为null

1.判断undefined:var tmp = undefined; if (typeof(tmp) == "undefined"){ alert("undefined"); }说明:typeof 返回的是字符串,有六种可能:"number"、"string"、"boolean"、"object"、"function"、"undefined&quo

如何对typescript+react项目中请求接口数据的处理

1.在src下创建一个axios.d.ts的文件,并定义接口的类型// axios接口的处理import * as axios from 'axios'declare module 'axios' { interface AxiosInstance { (config: AxiosRequestConfig): Promise<any> }}2.重启项目后就可以用了...