当特定字段不是模型的字段时,如何在控制器中检索表单值?
<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);
返回未定义。是否可以在不修改用户资源的情况下获取密码?