JS 判断是否为null 1.判断undefined:var tmp = undefined; if (typeof(tmp) == "undefined"){ alert("undefined"); }说明:typeof 返回的是字符串,有六种可能:"number"、"string"、"boolean"、"object"、"function"、"undefined&quo JavaScript 2024-01-21 36 点赞 0 评论 54 浏览
如何对typescript+react项目中请求接口数据的处理 1.在src下创建一个axios.d.ts的文件,并定义接口的类型// axios接口的处理import * as axios from 'axios'declare module 'axios' { interface AxiosInstance { (config: AxiosRequestConfig): Promise<any> }}2.重启项目后就可以用了... typescript 2024-01-10 34 点赞 0 评论 51 浏览