我试图使用ng-model绑定一个复选框到scope。复选框的初始状态对应于范围模型很好,但是当我选中/取消选中复选框时,模型不会改变。需要注意的是,模板是在运行时使用ng-include动态加载的
原文链接:https://www.f2er.com/angularjs/146193.htmlapp.controller "OrdersController",($scope,$http,$location,$state,$stateParams,Order) -> $scope.billing_is_shipping = false $scope.bind_billing_to_shipping = -> console.log $scope.billing_is_shipping <input type="checkBox" ng-model="billing_is_shipping"/>
当我选中框控制台日志为false,当我取消选中该框,控制台再次日志为false。我也有范围的订单模型,如果我改变复选框的模型为order.billing_is_shipping,它工作正常