我能够根据选中的方法向db插入值,但是我无法在从db中获取值时检查值。可以任何人给我一些帮助。谢谢。
我的模板,
Form1
我的值存储在db as,
中void OpenSecondForm()
{
Form form2 = new Form();
form2.ShowDialog();
}
答案 0 :(得分:2)
首先,在使用角度方式时,使用type = type_x;
而不是value
。
然后将ng-model
设为ng-checked
的值。
<强> ng-model
强>
以下是已解决的片段:
ng-model="type" and ng-checked="type"
&#13;
var app = angular.module('myApp', []);
app.controller('myCtrl', function($scope) {
$scope.bussinesstypeoptions = ['Education Consultant', 'Ticket/Travel', 'Hotel/Home-Stay', 'Guardianship', 'Visa/Solicitors', 'Others'];
$scope.object = {}
$scope.business_type = [
"Education Consultant",
"Guardianship",
"Hotel/Home-Stay"
]
for(i = 0;i < $scope.business_type.length; i++)
{
$scope.object[$scope.business_type[i]] = true;
console.log($scope.object)
}
});
&#13;