为什么在Bookstore中grid加载不出来json资源?(searchText参数undefined)求指教
$scope.getPagedDataAsync = function(pageSize, page, searchText) {
setTimeout(function() {
var data;
if (searchText) {
var ft = searchText.toLowerCase();
$http.get('../data/books' + $stateParams.bookType + '.json')
.success(function(largeLoad) {
data = largeLoad.filter(function(item) {
return JSON.stringify(item).toLowerCase().indexOf(ft) != -1;
});
$scope.setPagingData(data, page, pageSize);
});
alert("success");
} else {
$http.get('../data/books' + $stateParams.bookType + '.json')
.success(function(largeLoad) {
$scope.setPagingData(largeLoad, page, pageSize);
});
alert('error');
}
}, 100);
};
这是老师的源码 拉下来自己跑就一直error(alert是我自己为了看哪儿有问题加的)