-1

当特定字段不是模型的字段时,如何在控制器中检索表单值?

<form name="userForm" ng-submit="updateUser()">
       //fields of model
       <input type="text" name="firstname" ng-model="user.first_name" required/>

       //not bound to model
       <input type="password" name="password"/>
       <input type="password" name="password_confirmation"/>
 </form>

在控制器中:

 console.log($scope.password);

返回未定义。是否可以在不修改用户资源的情况下获取密码?

4

1 回答 1

2

您可以添加ng-model="password",它会被添加到范围但不是$scope.user

<input type="password" name="password" ng-model="password" />
<input type="password" name="password_confirmation" ng-model="password_confirmation" />
于 2013-05-24T14:46:05.700 回答