我想用DE / EN数据创建可重用的输入组组件。
我正在寻找,一旦EN和DE的所有必填字段都填写完毕,然后应该启用“提交”按钮。并且还应该以JSON格式获取所有数据。
这里是示例https://stackblitz.com/edit/angular-avjyct?file=app/app.component.ts
我一直在尝试,但是卡住了。请高手指点吗?
答案 0 :(得分:3)
看起来您想将字符串值传递给子组件,但传递了undefined
:
[en]="label1_en"
^^^^^^^^^
there is no such property in your component.
您可以传递如下字符串:
[en]="'label1_en'"
或
en="label1_en"