当我在代码中添加[[ngModel)]时,出现此错误:


  DOMException:字符串包含无效字符


组件文件:

const keyInput = document.createElement('input');
keyInput.setAttribute('class', 'form-control input-transparent');
keyInput.setAttribute('type', 'text');
keyInput.setAttribute('[(ngModel)]', trans.key);
keyInput.setAttribute('name', 'keys[]');
keyInput.setAttribute('value', trans.key);


谁能帮我解决这个问题?

最佳答案

我建议使用Angular中已经可用的动态表单功能。它也提供了对表单控件的大量控制以及一种系统的方法。请follow the link,以获取更多详细信息

09-29 23:09