gpt4 book ai didi

javascript - AngularJS 中的 ng-repeat 不起作用,为什么?

转载 作者:行者123 更新时间:2023-12-03 06:37:13 25 4
gpt4 key购买 nike

当我尝试加载视频时,我使用 Angular 和视频js:

 <div class="col-md-8" ng-repeat='season in show_detail.season_in_show|filter:seasonbyID'>
<div class="player-block" ng-show='hasSubscription(season)'>
<video id="serial-video" class="video-js" controls="controls" preload="auto" height="450" data-setup='' ng-src="{{season.preview_video}}">
<source ng-src="{{season.preview_video}}" controls="controls" type='video/mp4'>
</video>
</div>
</div>
我得到: enter image description here

enter image description here

只有当我使用 ng-repeat 时才会发生

最佳答案

尝试将 while div 包装在另一个包含 ng-if 的 div 中当所有视频数据加载完毕后,使该语句为 true。您的问题可能是在通过 videojs 填充数据之前渲染 dom 的面。

编辑:我认为你的“季节”变量会动态填充。数据填充完成后,设置一个变量,例如 $scope.dataArrived = true。然后,执行:

<div ng-if="dataArrived">
//your dom code
</div>

关于javascript - AngularJS 中的 ng-repeat 不起作用,为什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38141831/

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