我正在尝试根据DB 1或0中的值自动设置复选框 在我的控制器中返回true或false 如何根据数据库中的值自动检查复选框。即检查是否为真,如果为假则取消选中 这是angularJS代码
$http.get('/api/cusEmoAllo/' + $routeParams.EmpID).success(function (data)
{
//data[0].taxS); this may true or false // check if true uncheck if false
$scope.box = data[0].taxS;
});
这是复选框
<input id="box" type="checkbox" ng-model="box" />
我是棱角分明的新人,谢谢!