表格名称和复选框。
我可以将名称放在MongoDB中但是如何将复选框的值放在MongoDB中?
的index.html
<tr>
<td><input class="form-control" ng-model="film.name"></td>
<td><label ng-repeat="role in roles">
<input type="checkbox" checklist-model="user.roles" checklist-value="role"> {{role}}
</label></td>
<td><button class="btn btn-primary" ng-click="addFilm()">Add manga</button></td>
</tr>
收集电影
db.films.insert({aome:" lara croft", gender:['action', 'adventure'] })
功能 addFilm
$scope.addManga = function() {
$http.post('/films', $scope.film).success(function(response) {
})};
$scope.roles = [
'adventure',
'action'
];
$scope.user = {
roles: ['user']
};
我不知道创建一个函数来接收复选框的值并与名称一起插入。
答案 0 :(得分:1)
在https://docs.angularjs.org/api/ng/input/input[checkbox]查看输入[复选框]的Angular文档,并特别注意ng-model
内容。