如何检查是否已加载所有Ajax数据

时间:2019-02-20 19:21:04

标签: jquery angularjs ajax

我正在尝试确定所有div的确定高度。但是,由于ajax加载图像需要花费一些时间来加载,因此获得错误的高度值。这导致错误的高度值到来。你能帮我完成ajax的实际高度吗?

Ajax调用:

if hasattr(response.response, 'file'):

高度确定功能:

$http({
    method: 'GET',
    url: '/index.php?rest_route=/all/resources' + page_string + sort_string + business_param + search_string + all_filters + webinar + $scope.post_type
}).then(function (response) {
    $scope.call();
}, function (error) {

    console.error('There was some problem in loading resources data.');
});

图像div正在加载$scope.call = function () { angular.element('.grid-item').each(function () { $height = angular.element(this).find(".text-wrap").outerHeight(true); angular.element("grid-item").css('height', $height + 'px'); }); }; div中。请帮助我获取实际高度。

0 个答案:

没有答案