特定のフィールドがモデルのフィールドではない場合、コントローラーでフォーム値を取得するにはどうすればよいですか?
<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);
undefinedを返します。ユーザー リソースを変更せずにパスワードを取得することは可能ですか?