我正在尝试使用ng-repeat
创建用户表单,但我有点挣扎。当我使用数组中的名称将输入绑定到范围时,signupForm.modelBindings
名称被设置为input
值,显然这不是我想要的。如何将输入绑定到范围,同时将输入留空?
PS:感觉就像我试图以一种非常笨拙的方式做到这一点,有没有更好的方法来实现我想要的,而不必创建大量包含这些值的数组?
编辑:我找到了一个更好的解决方案,但我仍然遇到输入不为空的问题。看看更新的代码:
<tr ng-repeat="row in signupForm"
class="data-row">
<td class="label-cell data-cell">
<label ng-bind="(row.description) + ':'"></label>
</td>
<td class="data-cell">
<input type="{{row.type}}" ng-model="row.model"
placeholder="{{row.description}}"
class="round input">
</td>
<td class="error-cell data-cell">
<span class="error">*</span>
</td>
</tr>
表格信息:
$scope.signupForm = [
{
description: 'Firstname',
type: 'text',
model: 'user.firstname'
},
{
description: 'Lastname',
type: 'text',
model: 'user.lastname'
},
{
description: 'Date of birth',
type: 'text',
model: 'user.dateOfBirth'
},
{
description: 'Country',
type: 'text',
model: 'user.country'
},
{
description: 'Display name',
type: 'text',
model: 'user.displayName'
},
{
description: 'E-mail',
type: 'email',
model: 'user.email'
},
{
description: 'Password',
type: 'password',
model: 'user.firstname'
},
{
description: 'Confirm password',
type: 'password',
model: 'user.confirmPassword'
}
]
我尝试通过将范围设置为空字符串来清除它,但它不起作用:
$scope.firstname, $scope.lastname, $scope.dateOfBirth,
$scope.country, $scope.displayName, $scope.email,
$scope.password, $scope.confirmedPassword = '';