Angular JS Rendering <md-checkbox> with array variables ng-repeat

问题描述 投票:0回答:1

我使用的是Angular JS,我的md-check不能和Controller的Array一起工作。下面是代码。

前端

<md-content flex="13" class="week-day-time bg-white"  ng-repeat="weekday in staff.work_plan" layout-padding>
   <md-checkbox ng-model="weekday.status"><span class="text-uppercase text-bold">{{ weekday.day }}</span> 
   </md-checkbox>
   <fieldset class="demo-fieldset" >
   <legend class="demo-legend"><?php echo lang('working_hours') ?></legend>
        <md-input-container>
            <label><?php echo lang('start') ?></label>
            <input str-to-time="" ng-model="weekday.start" type="time">
   </md-input-container>

JS

$http.get(BASE_URL + 'api/staff_detail/' + STAFFID).then(function (StaffDetail) {
        $scope.staff = StaffDetail.data;
        $scope.UpdateWorkPlan = function () {
            var dataObj = $.param({
                work_plan: $scope.staff.work_plan
            });
            var config = {
                headers: {
                    'Content-Type': 'application/x-www-form-urlencoded;charset=utf-8;'
                }
            };

其他变量有weekday.day和工作时间,weekday.start能用,但weekday.status用md-checkbox不能用。

希望得到您的帮助。

尊敬的各位

javascript angularjs angularjs-ng-repeat render angular-ngmodel
1个回答
1
投票

md-checkbox的ng-model的值应该是布尔值。确保你的数据不是字符串 "true "或 "false"。检查你的数据以确保你有什么。

© www.soinside.com 2019 - 2024. All rights reserved.