我是 Angular 的新手......在下面的代码中,我需要 $scope.slugname
在 Angular Factory(Test)中使用变量范围......
var myApp = angular.module('myApp', ['infinite-scroll']);
myApp.controller('DemoController', function($scope, Test) {
$scope.slugname ="slugname";
$scope.test = new Test();
});
myApp.factory('Test', function($http) {
var test = function() {
this.items = [];
this.busy = false;
this.after = '';
};
Test.prototype.nextPage = function() {
if (this.busy) return;
this.busy = true;
var url = 'baseURL/?slug='+$scope.slugname; //<-- I need to use variable($scope.slugname) here
$http.jsonp(url).success(function(data) {
var items = data.data.children;
for (var i = 0; i < items.length; i++) {
this.items.push(items[i].data);
}
this.after = this.items[this.items.length - 1].id;
this.busy = false;
}.bind(this));
};
return Test;
});