gpt4 book ai didi

javascript - 等待图像加载到 angularjs 工厂内

转载 作者:行者123 更新时间:2023-11-27 22:45:26 24 4
gpt4 key购买 nike

我创建了一个小功能,允许用户搜索电影标题。这会执行来自 tmdb.org 的 JSON 请求,该请求会返回标题、日期和 url 的海报等内容。

Controller :

    angular.module('movieSeat')
.factory('moviesearchFactory', ['$http', '$q', '$rootScope', function ($http, $q, $rootScope) {

var factory = {};

function httpPromise(url) {
var deferred = $q.defer();
$http({
method: 'JSONP',
url: url
})
.success(function (data) {
deferred.resolve(data.results);
})
.error(function () {
deferred.reject();
});
return deferred.promise;
}

factory.getMovies = function (searchquery) {
return httpPromise('http://api.themoviedb.org/3/' + 'search/movie?api_key=a8f7039633f2065942cd8a28d7cadad4' + '&query=' + encodeURIComponent(searchquery) + '&callback=JSON_CALLBACK')
}

return factory;

}]);

工厂:

    angular.module('movieSeat')
.controller('moviesearchCtrl', ['$scope', 'moviesearchFactory', function ($scope, moviesearchFactory) {

$scope.createList = function (searchquery) {
$scope.loading = true;
moviesearchFactory.getMovies(searchquery)
.then(function (response) {
$scope.movies = response;
})
.finally(function () {
$scope.loading = false;
});

}

}]);

模板:

    <div ng-controller="moviesearchCtrl" id="movieSearch">

<div class="spinner" ng-show="loading">Loading</div>
<input ng-model="searchquery" ng-change="createList(searchquery)" ng-model-options="{ debounce: 500 }" />
{{ search }}

<ul>
<li ng-if="movie.poster_path" ng-repeat="movie in movies | orderBy:'-release_date'">
<span class="title">{{ movie.title }}</span>
<span class="release_date">{{ movie.release_date }}</span>
<img ng-src="https://image.tmdb.org/t/p/w300_and_h450_bestv2/{{ movie.poster_path }}" class="poster"/>
</li>
</ul>
</div>

此功能的问题在于 Spinner 类仅等待请求的数据。但仅仅加载一些 JSON 并不需要很长时间,从浏览器中的 api 下载图像需要一段时间。

这会导致两件事。在图像在浏览器中渲染之前,第一个微调器被删除,并且由于图像都是异步加载的,因此会导致瀑布效果。

解决此问题的最简单方法是延迟 Controller 中的 .then 调用,直到为用户下载图像,然后进入 .finally 调用.

但我找不到创建类似内容的方法。有什么建议吗?

最佳答案

试试这个并让我知道:

这个想法是使用指令来发出渲染完成事件:

dashboard.directive('onFinishRender', function ($timeout) {
return {
restrict: 'A',
link: function (scope, element, attr) {
if (scope.$last === true) {
$timeout(function () {
scope.$emit(attr.onFinishRender);
});
}
}
}
});

在 Controller 中保留等待图像加载 promise 的事件监听器:

    $scope.$on('dataLoaded', function(ngRepeatFinishedEvent) {
// your code to check whether images has loaded
var promises = [];
var imageList = $('#my_tenants img');
for(var i = 0; i < imageList.length; i++) {
promises.push(imageList[i].on('load', function() {}););
}
$q.all(promises).then(function(){
// all images finished loading now
$scope.loading = false;
});
});

在 html 端:

<div id = "my_tenants">
<div ng-repeat="tenant in tenants" on-finish-render="dataLoaded">
// more divs
</div>
</div>

关于javascript - 等待图像加载到 angularjs 工厂内,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38437271/

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