美文网首页TypeScript基础我爱编程
TypeScript基础入门 - 接口 - 额外的属性检查

TypeScript基础入门 - 接口 - 额外的属性检查

作者: 鹏鲲云之上 | 来源:发表于2018-08-02 22:05 被阅读57次

    转载地址

    TypeScript基础入门 - 接口 - 额外的属性检查

    项目实践仓库

    https://github.com/durban89/typescript_demo.git
    tag: 1.0.9
    

    为了保证后面的学习演示需要安装下ts-node,这样后面的每个操作都能直接运行看到输出的结果。

    npm install -D ts-node
    

    后面自己在练习的时候可以这样使用

    npx ts-node src/learn_basic_types.ts
    
    npx ts-node 脚本路径
    

    接口

    TypeScript的核心原则之一是对值所具有的结构进行类型检查。 它有时被称做“鸭式辨型法”或“结构性子类型化”。 在TypeScript里,接口的作用就是为这些类型命名和为你的代码或第三方代码定义契约。

    额外的属性检查

    首先看一个示例,代码如下:

    interface SquareConfig {
        color?: string;
        width?: number;
    }
    
    function createSquare(config: SquareConfig): { color: string; area: number } {
        let newSquare = { color: "white", area: 100 };
        if (config.color) {
            newSquare.color = config.color;
        }
        if (config.width) {
            newSquare.area = config.width * config.width;
        }
        return newSquare;
    }
    
    let mySquare = createSquare({ colour: "red", width: 100 });
    

    运行后接到的结果如下

    ⨯ Unable to compile TypeScript:
    src/interface_4.ts(17,31): error TS2345: Argument of type '{ colour: string; width: number; }' is not assignable to parameter of type 'SquareConfig'.
      Object literal may only specify known properties, but 'colour' does not exist in type 'SquareConfig'. Did you mean to write 'color'?
    

    如果看过前面的文章的话,上面的代码应该会很容易理解。注意传入createSquare的参数拼写为colour而不是color。 在JavaScript里,这会默默地失败。

    你可能会争辩这个程序已经正确地类型化了,因为width属性是兼容的,不存在color属性,而且额外的colour属性是无意义的。

    然而,TypeScript会认为这段代码可能存在bug。 对象字面量会被特殊对待而且会经过"额外属性检查",当将它们赋值给变量或作为参数传递的时候。 如果一个对象字面量存在任何"目标类型"不包含的属性时,你会得到一个错误。

    // error: 'colour' not expected in type 'SquareConfig'
    let mySquare = createSquare({ colour: "red", width: 100 });
    

    绕开这些检查非常简单。 最简便的方法是使用类型断言:

    let mySquare = createSquare({ width: 100, opacity: 0.5 } as SquareConfig);
    

    然而,最佳的方式是能够添加一个字符串索引签名,前提是你能够确定这个对象可能具有某些做为特殊用途使用的额外属性。 如果 SquareConfig带有上面定义的类型的color和width属性,并且还会带有任意数量的其它属性,那么我们可以这样定义它:

    interface SquareConfig {
        color?: string;
        width?: number;
        [propName: string]: any;
    }
    

    后面会分享到索引签名,但在这我们要表示的是SquareConfig可以有任意数量的属性,并且只要它们不是color和width,那么就无所谓它们的类型是什么。

    还有最后一种跳过这些检查的方式,这可能会让你感到惊讶,它就是将这个对象赋值给一个另一个变量: 因为 squareOptions不会经过额外属性检查,所以编译器不会报错。

    let squareOptions = { colour: "red", width: 100 };
    let mySquare = createSquare(squareOptions);
    

    要留意,在像上面一样的简单代码里,你可能不应该去绕开这些检查。 对于包含方法和内部状态的复杂对象字面量来讲,你可能需要使用这些技巧,但是大部额外属性检查错误是真正的bug。 就是说你遇到了额外类型检查出的错误,比如“option bags”,你应该去审查一下你的类型声明。 在这里,如果支持传入 color或colour属性到createSquare,你应该修改SquareConfig定义来体现出这一点。

    本实例结束实践项目地址

    https://github.com/durban89/typescript_demo.git
    tag: 1.0.10
    

    相关文章

      网友评论

        本文标题:TypeScript基础入门 - 接口 - 额外的属性检查

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