I'm trying to use Angular's built-in form functions, specifically setPristine()
to clear the form on user submit. My controller has access to $scope.newForm
(my form) with all of its methods, but running $scope.newForm.$setPristine()
isn't resetting the form fields.
Here is my HTML:
<div ng-controller="NewFormController">
<h3>New Entry</h3>
<form name="newForm" method="post" novalidate>
<div class="input-group">
<label>Name</label>
<input name="name" type="text" ng-model="place.name"/>
</div>
<div class="input-group">
<label>Description</label>
<textarea name="description" type="text" ng-model="place.description"></textarea>
</div>
<div class="input-group">
<label>Neighborhood</label>
<input name="neighborhood" type="text" ng-model="place.neighborhood"/>
</div>
<div class="input-group">
<label>Address</label>
<input name="location" type="text" ng-model="place.address"/>
</div>
<input type="submit" value="Submit" ng-click="submit(place)"/>
</form>
</div>
And here is the controller where I call setPristine()
:
app.controller('NewFormController', function($scope, $pile) {
$scope.place = {
name: 'ExamplePlace',
description: 'This is a description!',
neighborhood: 'Manhattan',
address: '112 Street Place'
};
$scope.submit = function(place) {
$scope.newForm.$setPristine();
$scope.newForm.$setUntouched();
};
});
Here is a working codepen that reproduces my problem.
Note: I'm using Angular version 1.4.3.
I'm trying to use Angular's built-in form functions, specifically setPristine()
to clear the form on user submit. My controller has access to $scope.newForm
(my form) with all of its methods, but running $scope.newForm.$setPristine()
isn't resetting the form fields.
Here is my HTML:
<div ng-controller="NewFormController">
<h3>New Entry</h3>
<form name="newForm" method="post" novalidate>
<div class="input-group">
<label>Name</label>
<input name="name" type="text" ng-model="place.name"/>
</div>
<div class="input-group">
<label>Description</label>
<textarea name="description" type="text" ng-model="place.description"></textarea>
</div>
<div class="input-group">
<label>Neighborhood</label>
<input name="neighborhood" type="text" ng-model="place.neighborhood"/>
</div>
<div class="input-group">
<label>Address</label>
<input name="location" type="text" ng-model="place.address"/>
</div>
<input type="submit" value="Submit" ng-click="submit(place)"/>
</form>
</div>
And here is the controller where I call setPristine()
:
app.controller('NewFormController', function($scope, $pile) {
$scope.place = {
name: 'ExamplePlace',
description: 'This is a description!',
neighborhood: 'Manhattan',
address: '112 Street Place'
};
$scope.submit = function(place) {
$scope.newForm.$setPristine();
$scope.newForm.$setUntouched();
};
});
Here is a working codepen that reproduces my problem.
Note: I'm using Angular version 1.4.3.
Share Improve this question edited Aug 15, 2015 at 22:16 Himmel asked Aug 15, 2015 at 22:11 HimmelHimmel 3,7097 gold badges43 silver badges78 bronze badges 4-
2
You mean, isn't resetting.... yeah,
$setPristine
was not meant to do that - it just marks the form as$pristine
. To reset, you need to clear/reset your view model, in your case:$scope.place = {}
– New Dev Commented Aug 15, 2015 at 22:14 - Yes, "isn't". Thanks, I thought that setPristine() cleared the inputs as well. – Himmel Commented Aug 15, 2015 at 22:17
-
well, no - it doesn't. It wouldn't even know how, because there are a number of way to "clear" - could be
""
, orundefined
or something pletely different for custom controls. So, to "clear", you modify the view model to whatever "clear" means, typically resetting to a new object works - which is how it is supposed to be – New Dev Commented Aug 15, 2015 at 22:18 -
Gotcha -
$setPristine()
is helpful for form validation, but doesn't affect the view model variables declared in the input elements. – Himmel Commented Aug 15, 2015 at 22:19
1 Answer
Reset to default 11$setPristine
only marks the form as being $pristine
, which is useful for validation-driven expressions and CSS (e.g. .ng-dirty
)
So, $setPristine
does not clear the form's controls. In fact, it wouldn't even know how to do that. Consider, that to "clear" could mean different things to different models. "Clear" could mean ""
, or undefined
, or null
, or anything at all that a custom input control that works with ngModel
could mean.
So, to properly clear the form is to modify the View Model that drives the form to whatever definition of "clear" it needs. In most cases - yours included - it is just a matter of setting the View Model to a new object:
$scope.submit = function(place) {
$scope.newForm.$setPristine();
$scope.newForm.$setUntouched();
// clear the form
$scope.place = {};
};