私のアプリケーションでは、次のようなフォームにモデルが添付されています。
$scope.location = { description: "my descriptive description", address: "blah" }
ng-model="location.description" にバインドされているフォームのフィールド "description" をクリーニングすると、$scope.location からフィールドが削除され、次のようになります。
$scope.location = { address: "blah" }
「説明」フィールドを保持したいと思います。この動作を実現するにはどうすればよいですか?
ご協力いただきありがとうございます