我正在为我的结果做一个分页指令,我似乎无法克服这个问题。我有以下代码(咖啡脚本):
window.pagination_services = angular.module("pagination_services", [])
.directive('paginate', ->
{
restrict: 'E',
replace: true,
templateUrl: '../../assets/app/partials/services/pagination.html',
scope: true,
link: ($scope, $element, $attrs) ->
console.log $scope.results
}
)
如您所见,我有一个 console.log ,$scope.results
它返回:
e
pagination: Object
current_page: 1
per_page: 20
total_entries: 4097
__proto__: Object
sales: Array[20]
__proto__: e
我需要能够访问该分页对象的值。就像是:
$scope.results.pagination.current_page
但是,无论我尝试什么,我都不确定。
有任何想法吗?