我知道这已经被问了一千次了,但我想我已经尝试了我读过的每一个解决方案,但我似乎无法让它发挥作用。
我有一个从中获取图像的 API,在将图像拉入视图后,我希望它们使用 photoswipe 在移动设备上显示。
我有一个指令:
'use strict';
App.directive('photoswipe', function () {
return {
replace: false,
restrict: 'A',
link: function photoSwipeLink(scope, element, attr) {
scope.$watch(attr.photoswipe, function(value){
angular.element('#gallery a').photoSwipe({
enableMouseWheel: false,
enableKeyboard: false
});
});
}
};
});
我在控制台中收到此错误:
Code.PhotoSwipe.createInstance: No images to passed.
我猜这是因为指令在视图渲染之前运行。
如果我添加 $timeout 而不是 watch 那么代码确实有效。不幸的是,这个解决方案并不好,因为从 API 获取数据可能会有延迟。此外,代码在超时内不起作用。
我已经尝试过,上面的代码,我尝试过使用 $viewcontentloaded,尝试过在 ng-repeat 中的最后一个元素之后触发函数,但都不起作用。
任何帮助将非常感激。
编辑:
这是HTML。
<h1>{{ gallery.headline }}</h1>
<ul id="gallery" photoswipe>
<li class="gallery" ng-repeat="image in gallery.images">
<a href="{{ image.url }}" alt="image.caption">
<img ng-src="{{ image.thumb_url }}" class="thumb" alt="{{ image.caption }}" style="display: block;">
<h3 class="headline">{{ image.caption }}</h3>
</a>
</li>
</ul>