gpt4 book ai didi

Angular:strictTemplates - 如何在模板中正确设置 bool 值和数字?

转载 作者:行者123 更新时间:2023-12-03 20:24:11 25 4
gpt4 key购买 nike

我设置了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"

关于Angular:strictTemplates - 如何在模板中正确设置 bool 值和数字?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64441455/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com