我目前正试图在this之后将表单绑定到我的redux商店(模板驱动)
所以我想说我有以下结构:
{
person {
personName: string,
address {
street: string,
city: string
}
}
}
现在我想将它绑定到一个表单:
<form [connect]=['person']>
<input type="text" name="personName">
<!-- now i want to show the street and city -->
<input type="text" name="street">
<input type="text" name="city">
</form>
如何告诉表单我想将address
添加到路径中,以便将street
和city
绑定到我的商店?
答案 0 :(得分:0)
所以我找到了解决方案:
<form [connect]=['person']>
<input type="text" name="personName">
<!-- now i want to show the street and city -->
<div [ngModelGroup]="'address'">
<input type="text" name="street">
<input type="text" name="city">
</div>
</form>
我将address
作为字符串传递给modelGroup,这会在路径中创建必要的链接