我的应用程序的第一个视图中有离子滑动框,当我进入其他视图并返回到第一个视图时它就会打开,之后它起作用,因为我认为离子滑块在缓存中。图像是从JSON加载的,有人知道什么是错的或我需要做什么?
.controller('PlaylistsCtrl', function($scope, $http) {
$http.get("http://scabandblastofwheat2016.org/mobile/ImageSlide.json")
.success(function (response)
{
$scope.names = response;
});
})

<div id="slide">
<ion-slide-box style="width:80%; height:30%;" auto-play="true" show-pager="true">
<ion-slide ng-repeat="x in names|orderBy:'Name'">
<img style="width:100%;" ng-src="{{x.Name}}" alt="" />
</ion-slide>
</ion-slide-box>
</div>
&#13;