如何使用响应式表单将静态数据提取到表单中

How to fetch the static data to the form using reactive forms

我有一个反应形式,点击新按钮,我可以再次获得相同的部分。 但是这里 select 字段中的选项没有显示,而且,我在页面加载后立即收到错误消息。

ERROR Error: Cannot find control with path: 'itemRows -> ContactName'

ERROR Error: Cannot find control with path: 'itemRows -> Phone'

ERROR Error: Cannot find control with path: 'itemRows -> Relationship'

谁能帮我解决这个问题,帮我在关系中获取下拉列表。

每次加载页面时,我都会收到该错误,而且下拉列表中的数据也不可见。 请帮忙

formArrayNameformControlName 放在同一个 HTML 节点上不是一个好主意。尝试遵循 FormArrayName documentation 中描述的模式。在你的情况下,我首先将 formArrayName="itemRows" 放在一个更高一级的新 div 上。