在我tutorial之后提交数据库条目后,我正在努力使表单自行清楚。这是我的代码:
HTML:
<form class="new-task" ng-submit="$ctrl.addTask($crtl.newTask)";>
<input ng-model="$crtl.newTask" type="text" name="text" placeholder="Type to add new tasks" minlength="1"/>
</form>
JS:
addTask(newTask) {
// Insert a task into the collection
Tasks.insert({
text: newTask,
createdAt: new Date
});
// Clear form
this.newTask = '';
}
答案 0 :(得分:0)
这是一个错字,应该是
ctrl not crtl