代码之家  ›  专栏  ›  技术社区  ›  slevin

text区域在角度6中不工作

  •  0
  • slevin  · 技术社区  · 6 年前

    我使用的是角6,我尝试将文本区域放在表单中。

    这是到目前为止我的代码

    <textarea rows="20" cols="50" id="mailtext" required [(ngModel)]="mailtext" name="mailtext" #mailtextvalidityMsg="ngModel" >Hi there</textarea>
    

    我可以在HTML中看到文本区域,但是“hi-there”文本没有呈现。我的控制台没有任何错误。

    如果我移除 [(ngModel)]="mailtext" name="mailtext" #mailtextvalidityMsg="ngModel" 它起作用了。

    这只发生在文本区域。对于同一表单中的其他字段,例如 input type="email" 没有问题。

    我错过了什么?

    谢谢

    编辑

    我忘了说我想在文本区域中有换行符和链接,比如

    Hi there , 
    
    this is the code you have to use 
    
    Click here
    

    我要换行 Click here 必须是链接

    如果我愿意的话

    mailtext:any;
    this.mailtext = 'Hi there,'+<br>+'this is the code you have to use';
    

    我得到 Hi there,NaN

    谢谢

    1 回复  |  直到 6 年前
        1
  •  1
  •   user184994    6 年前

    它可能被替换了 ngModel 运行时绑定。

    如果您想要一个默认值,只需设置 this.mailtext = 'Hi there' 在组件中