使用ng-container和ng-template时动态形式不起作用
我正在创建一个动态表单,其中我正在获取表单字段表单API。 我正在使用ng-container& ng-template
要多次重复使用FormGroup,但没有按预期工作。当我使用通常的div时,它会按预期工作。
I am creating a dynamic form where I am getting the form fields form api.
I am using ng-container & ng-template
to reuse the formgroup multiple times but it's not working as expected. When I am using usual div it's working as expected.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用FormGroup实例而不是FormGroupName,因为模板失去了FormGroup的上下文:
stackblitz
You can use FormGroup instances instead of formGroupName, because template loses context of formGroup:
Stackblitz