嗨,我有烦人的问题。我想在$ scope中添加两个方法。我正是这样做的:
function typeCtrl ($scope, $timeout) {
$scope.addType = function(){
requestHelper.addType();
};
$scope.removeType = function(number){
alert("asdasdsad");
requestHelper.removeType(number);
};
};
我试图这样称呼它:
<button id="addType" class="btn btn-primary glyphicon glyphicon-plus" ng-click="addType()"></button>
<button id="removeRequest" class="btn btn-danger glyphicon glyphicon-minus" ng-click="removeType(1)"></button>
方法addType()正常工作但有角度看不到removeType()方法。你能告诉我,我做错了吗?谢谢你的回复。
答案 0 :(得分:2)
是不是因为第一个按钮上没有结束括号?