ng-change无论如何都不会触发我的功能,这里是视图;
<div ng-controller="widgets.lunchMenu as vm">
<label class="btn btn-transparent grey-salsa btn-circle btn-sm active">
<input type="radio" name="options" class="toggle" id="option1" ng-model="vm.takeCount" ng-value="0" ng-change="vm.getLunchMenus()">@L("Today")
</label>
<label class="btn btn-transparent grey-salsa btn-circle btn-sm">
<input type="radio" name="options" class="toggle" id="option2" ng-model="vm.takeCount" ng-value="7" ng-change="vm.getLunchMenus()">@L("Week")
</label>
<label class="btn btn-transparent grey-salsa btn-circle btn-sm">
<input type="radio" name="options" class="toggle" id="option3" ng-model="vm.takeCount" ng-value="30" ng-change="vm.getLunchMenus()">@L("Month")
</label>
</div>
这是控制器:
(function () {
appModule.controller('widgets.lunchMenu', [
'$scope', 'abp.services.app.lunch',
function ($scope, appService) {
var vm = this;
var today = new Date();
var month = today.getMonth();
vm.getLunchMenus = function () {
appService.getLunchMenus({ month: month + 1, takeCount: vm.takeCount }).success(function (data) {
vm.menus = data.items;
});;
};
vm.getLunchMenus();
}
]);
})();
有什么建议吗?谢谢你的帮助。
答案 0 :(得分:1)
为了使ng-change
指令能够看到vm.getLunchMenus
函数,它必须位于$scope
上。因此,您需要按照以下方式执行某些操作:
$scope.vm = this;
$scope.vm = function() { ... }
然后在你的标记中,你可以用
做你正在做的事情ng-change="vm.getLunchMenus()"
或者你可以做一些简单的事情
$scope.getLunchMenus = function() { ... }
然后在标记中:
ng-change="getLunchmenus()"
完全不需要vm
变量,因为this
对标记中的指令(ng-change
等)没有任何意义。