Angular: strictTemplates - 如何在模板中正确设置布尔值和数字?
Angular: strictTemplates - How to set boolean and numbers in Templates properly?
我设置 strictTemplates:true
并在 HTML 模板中使用以下内容
<textarea matInput matAutosizeMaxRows="4" matTextareaAutosize="true"
我从编译器收到
error TS2322: Type 'string' is not assignable to type 'number'.
error TS2322: Type 'string' is not assignable to type 'boolean'.
但如何在 HTML-模板中正确设置它(以避免错误)?
将 属性 名称括在方括号中。如果您离开方括号,这些值将被解释为字符串。带括号的值被解释为 TypeScript,因此可以正确输入。
<textarea matInput [matAutosizeMaxRows]="4" [matTextareaAutosize]="true"
我设置 strictTemplates:true
并在 HTML 模板中使用以下内容
<textarea matInput matAutosizeMaxRows="4" matTextareaAutosize="true"
我从编译器收到
error TS2322: Type 'string' is not assignable to type 'number'.
error TS2322: Type 'string' is not assignable to type 'boolean'.
但如何在 HTML-模板中正确设置它(以避免错误)?
将 属性 名称括在方括号中。如果您离开方括号,这些值将被解释为字符串。带括号的值被解释为 TypeScript,因此可以正确输入。
<textarea matInput [matAutosizeMaxRows]="4" [matTextareaAutosize]="true"