我有一个小角度应用程序,它有一个用于创建任务的表单模板,它有一个父项目。项目实例由路由控制,因此用户不会输入/编辑此数据。现在,我仍然需要将带有表单的project id
发送到后端。
模板:
<form name="newTaskForm">
<input ng-model="new_task.title" type="text" id="title" name="title" class="form-control" placeholder="Title" required />
<a class="btn btn-success" ng-click="createTask(new_task)">create</a>
</form>
据我所知,至少有4种直接发送project id
的方法。
1。在模板中使用隐藏字段
<form name="newTaskForm">
<!-- HIDDEN -->
<input ng-model="new_task.project" type="hidden" id="project" name="project" class="form-control" value="{{ project.id }}" />
<!-- END HIDDEN -->
<input ng-model="new_task.title" type="text" id="title" name="title" class="form-control" placeholder="Title" required />
<a class="btn btn-success" ng-click="createTask(new_task)">create</a>
</form>
2。使用模板中的项目ID初始化new_task
对象
<form name="newTaskForm" ng-init="new_task.project = project.id">
<input ng-model="new_task.title" type="text" id="title" name="title" class="form-control" placeholder="Title" required />
<a class="btn btn-success" ng-click="createTask(new_task)">create</a>
</form>
第3。使用new_task
project id
初始化controller
对象
.controller('TaskCtrl', function ($scope, project) {
$scope.project = project;
$scope.new_task = {project: $scope.project.id}
...
});
4。在提交
之前,将project id
添加到new_task
对象
.controller('TaskCtrl', function ($scope, project) {
$scope.createTask = function(obj) {
// add project id
obj.project = $scope.project.id;
// $http submission
...
};
...
});
我的问题是 - 这有关系吗?有没有一种实现这一目标的首选方法?还有更好的方法吗?
答案 0 :(得分:1)
选项3 - 可以进行一些优化:委托知识如何为服务创建新任务。
为什么?