gpt4 book ai didi

javascript - 使用 angularjs 在标签

转载 作者:行者123 更新时间:2023-11-27 23:16:46 26 4
gpt4 key购买 nike

查看:

<div class="list card" ng-repeat="x in content.spells">
....
<video width="320" height="240" ng-src="{{(getIdVideo(content.id) | trusted )}}" controls>
Seu navegador não suporta o elemento <code>video</code>.
</video>
....
</div>

Controller :

$scope.getIdVideo = function(videoId){
videoId = videoId.toString();
for (var i=0; i<=4; i++){
if (videoId.length != 4){
//videoId = videoId.push('0');
videoId = "0"+videoId;
}

}

return 'http://cdn.leagueoflegends.com/champion-abilities/videos/mp4/'+videoId+'_02.mp4';
};

同一个视频播放了 4 次。 The same video is shown 4 times

我将此函数称为 getIdVideo(),它根据 id 返回视频。我的方式是将同一个视频播放了 4 次。问题是我需要向每个 id 显示 4 个视频,只需将网址中“_”后面的数字从 02 更改为 05:

http:/cdn.leagueoflegends.com/champion-abilities/videos/mp4/'+videoId+'_02.mp4

我怎样才能做到这一点?

最佳答案

从外观上看,id 似乎在内容上。但您需要在 content.spells 上设置 id

然后就可以使用

    <video width="320" height="240" ng-src="{{(getIdVideo(x.id) | trusted )}}"   controls>

关于javascript - 使用 angularjs 在标签 <video> 中显示视频,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35752295/

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