我使用的是角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
谢谢