美文网首页
lesson 4 TS 2021-04-23

lesson 4 TS 2021-04-23

作者: jeff_nz | 来源:发表于2021-04-29 08:14 被阅读0次

    课程标题 路白-TS实战

    知识点

    基础知识

    const a: number = 0;
    a = 'a'; // 提示报错
    
    emum Test {
         A,  // 默认是0, 如果赋值为数字,后面递增
         B,
         C
    }
    const type = Test.A;
    
    
    type AjaxMethod = 'GET' | 'POST';
    
    interface Test {
        name: string;
        height?:number;
    }
    
    const a: Test = {
        // 会提示包含的变量
    }
    
    1. enum 枚举类型
    2. type interface
    3. 联合类型 |
    4. 交叉类型 &
    5. typeof: 用来获取一个变量声明或者对象的类型
    6. keyof: 可以用来获取一个对象中的所有key值
    7. in : 用来遍历枚举类型
    8. extends:

    课后问题

    相关文章

      网友评论

          本文标题:lesson 4 TS 2021-04-23

          本文链接:https://www.haomeiwen.com/subject/iqaqrltx.html