我有以下内容:
$scope.modalReset = function () {
gridService.modalReset($scope);
}
$scope.rowAction = function (action, row) {
gridService.rowAction(action, $scope, row, 'Question');
}
$scope.submitItem = function (formData) {
gridService.submitItem($scope, 'Question', formData);
}
有没有办法可以更简单地编写这些函数调用。我不打算将它们结合起来。所有功能都是范围对象的一部分。