gpt4 book ai didi

javascript - 了解使用 AngularJS promises,它们将如何帮助解决这个问题

转载 作者:行者123 更新时间:2023-11-30 10:25:17 24 4
gpt4 key购买 nike

我正在尝试使用 Angular 应用程序主 Controller 中的 $resource 从服务器加载 JSON 对象。有一些路由将部分加载到 ng-view 中,其中显示、分页等数据。

一切正常,但我的下一个目标是根据点击的链接过滤数据并更新 URL,以便用户可以链接到过滤后的数据 (domain.dev/products/brandname)。

只要站点从根 URL 或任何其他不调用产品路由的 URL 加载,一切都很好,但是一旦我尝试从/products 加载站点,它就会中断,因为数据在路由将部分加载到 View 之前不可用。

我想了解的是 promise 是否有助于解决这个问题,如果有的话,从哪里开始。我一直在阅读有关 promises 的文章,我相当确定这就是答案,但我无法让它与现有代码一起使用。

我使用 $resource 是因为它看起来很干净,但也许 $http 在这里会做得更好,因为它有更多选项。

简单地说,当网站从/加载时,一切都很好,因为使用 JSON 的部分还不存在,当它们被加载时,数据就准备好了。但是当加载部分的 Controller 在站点加载时被调用时,数据不存在并且 ProductController 在我尝试设置一些变量时抛出错误。由于 $scope.products 不存在,因此它没有长度方法。我将部分代码包装在一个带有 ng-show="products"的 div 中,但在这种情况下它没有像我预期的那样工作,因为错误似乎是在 Controller 中抛出的。部分仍然加载,但 {{ vars }} 可见。

如有任何相关指导,我们将不胜感激。

编辑:我并没有尝试将 URL 参数发送到端点,我实际上想要所有的预先数据,然后使用 Angular 进行过滤。基本上,我希望主应用程序下载所有数据(不多)并准备好,无论/products/string 是否为路径。我的目标是避免对每个过滤器进行 HTTP 调用。我有那个工作,但对于等待 HTTP 结果的几个项目来说,它的延迟太大了。我的主要问题是我可以获取数据,但是当数据从服务器返回时,ProductController 已经运行并抛出错误。基本上,我希望 Controller 在尝试运行之前等待数据。

编辑 2: 我发现了问题,更多的是我试图构建我的应用程序的方式。我认为分离代码的最佳方法是将产品内容放在它自己的 Controller 中,但由于还想预先加载数据,我需要在主 appController 中调用服务。那是我的错误。一旦我将所有代码移入 appController 并更改产品路径中的 Controller ,它就会按预期工作。我被提示学习更多关于 promise 的知识,这很好,我能够使用我学到的东西。仍然存在过滤问题,但这解决了这个问题。

我从这篇文章中得到了一些帮助:AngularJS: Waiting for an asynchronous call

这是工作代码:

elite.controller('productController', function($scope, $routeParams, $rootScope, $location, Products){
$scope.brand = $routeParams.brand;

$rootScope.productPagination = function(){

$scope.currentPage = 1;
$scope.numPerPage = 10;
$scope.maxSize = 6;
$scope.totalItems = $rootScope.products.length;
$scope.numPages = Math.ceil($scope.totalItems / $scope.numPerPage);

$scope.$watch('currentPage + numPerPage', function() {
var begin = (($scope.currentPage - 1) * $scope.numPerPage)
, end = begin + $scope.numPerPage;

$scope.filteredProducts = $rootScope.products.slice(begin, end);
});
}

if (!$rootScope.products){
Products.getProducts().then(function(data){
$rootScope.products = data.products;
$rootScope.productPagination();
});
}else{
$rootScope.productPagination();
}
});

这是到目前为止的应用程序(浓缩版):

var elite = angular.module("elite", ["ngResource", "ngSanitize", "ui.bootstrap"]);

elite.config(['$routeProvider', function($routeProvider){
$routeProvider.when('/', {
templateUrl: 'partials/home.html',
controller: 'homeController'
})

$routeProvider.when('/products', {
templateUrl:'partials/products.html',
controller: 'productController'
})

$routeProvider.when('/products/:brand', {
templateUrl:'partials/products.html',
controller: 'productController'
})

$routeProvider.otherwise({redirectTo :'/'})
}]);


elite.factory('Products', function($resource){
return $resource("/products")
});


elite.controller('appController', function($scope, $location, $routeParams, Products){

Products.get({},function (data){
$scope.products = data.products;
});
});

elite.controller('productController', function($scope, $location, $routeParams, $resource){
$scope.brand = $routeParams.brand;

$scope.currentPage = 1;
$scope.numPerPage = 10;
$scope.maxSize = 6;

$scope.$watch($scope.products, function(){
$scope.numPages = Math.ceil($scope.products.length / $scope.numPerPage);

$scope.$watch('currentPage + numPerPage', function() {
var begin = (($scope.currentPage - 1) * $scope.numPerPage)
, end = begin + $scope.numPerPage;

$scope.totalItems = $scope.products.length;

$scope.filteredProducts = $scope.products.slice(begin, end);
});
});

});




<div ng-show="products">
<h2>{{ brand }} products...</h2>
<h4>{{products.length}} items</h4>

<pagination ng-show="numPages" total-items="totalItems" page="currentPage" max-size="maxSize" class="pagination-small" boundary-links="true" rotate="false" num-pages="numPages"></pagination>

<table class="table table-striped">
<tr ng-repeat="product in filteredProducts">
<td>{{product.brand}}</td>
<td>{{product.title}}</td>
<td ng-bind="product.priceDealer | currency"></td>
<td>{{product.msrp | currency}}<td>
</tr>
</table>
</div>

最佳答案

我会稍微改变一下你的例子:

相反:

elite.factory('Products', function($resource){
return $resource("/products")
});

我们可以这样写:

elite..factory('Products', function($q){

var data = $resource('/products', {},
{
query: {method:'GET', params:{}}}
);

// however I prefer to use `$http.get` instead `$resource`

var factory = {
query: function (selectedSubject) {
var deferred = $q.defer();
deferred.resolve(data);
return deferred.promise;
}
}
return factory;
});

之后, Controller 端:

改为:

Products.get({},function (data){
$scope.products = data.products;
});

我们得到 promise 响应:

    Products.query()
.then(function (result) {
$scope.products = data.products;
}, function (result) {
alert("Error: No data returned");
});

引用

A promise represents a future value, usually a future result of an asynchronous operation, and allows us to define what will happen once this value becomes available, or when an error occurs.

我建议你阅读这个不错的 presentation 热 promise 起作用

关于javascript - 了解使用 AngularJS promises,它们将如何帮助解决这个问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19878404/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com