次のhtmlフォームselectステートメントがあります
<select ng-change="setBillGroup()" ng-model="bill.groupId" class="span8" ng-options="d.id as d.name for d in groups"></select>
とjs
myApp.controller('myAppController', function($scope, myAppService) {
.....
function setBillGroup(){
console.log("setBillGroup method called!");
......
}
....
});
しかし、何らかの理由で、フォームで何かを選択したときにsetBillGroup()が呼び出されないようです。
スコープでメソッドを定義する必要があります。
$scope.setBillGroup = function(){
console.log("setBillGroup method called!");
......
};