私は ngDialog [ https://github.com/likeastore/ngDialog ] を使用してモーダルを作成しています。ボタンをクリックすると POST リクエストを行う基本的なフォームがあります。同じボタンをクリックすると、フォームの入力がクリアされます。通常、次のようなことを行うことができますが$scope.valueOfNgModel = "";
、この場合は機能しません。また、ngDialog スコープは、コントローラーの $scope をインスタンス化するのと同じです。
ngDialog のインスタンス化は次のとおりです。
$scope.addStudents = function() {
ngDialog.open({
template: 'addStudents',
scope: $scope
});
};
ngDialog テンプレートは次のとおりです。
<script type="text/ng-template" id="addStudents">
<h1> Add Students to Your Class </h1>
<form ng-model="myForm" ng-submit="addNewStudent(newStudent)">
<input ng-model="newStudent.firstName" placeholder="First Name">
<input ng-model="newStudent.lastName" placeholder="Last Name">
<input ng-model="newStudent.email" placeholder="Email">
<input ng-model="newStudent.image" placeholder="imageUrl">
<h3> Note: Student Password by Default will be Firstname.lastname </h3>
<button class="ngdialog-button
ngdialog-button-primary"
type="submit">Add Student
</button>
</form>
</script>
そして、すべての入力フィールドをクリアしたいフォーム送信(またはボタンクリック)で実行される関数は次のとおりです。
$scope.addNewStudent = function(student) {
var newUserToAdd = {
firstName: student.firstName,
lastName: student.lastName,
teacher: false,
email: student.email,
password: student.firstName + '.' + student.lastName,
classesBelongTo: [$scope.currentClassId],
image: student.image
};
userService.postNewUser(newUserToAdd)
.then(function(response) {
$scope.loggedInUser = response.data;
})
console.log("this is $scope.newStudent", $scope.newStudent); //this is undefined - I'm not sure why
$scope.newStudent = {}; //I tried this to clear it out
$scope.$apply(); //I tried this to no avail
}
どんな助けでも大歓迎です!