为什么 这个 jsfiddle 不起作用?我无法获得 videoId
的值.如果我从模块中删除 ngRoute
那么它工作正常.
Why this jsfiddle is not working? I am not able to get value of videoId
. If I remove ngRoute
from module then it is working fine.
你需要像这样使用ng-src
:
<div ng-controller="AppController">
<h1>{{videoID}}</h1>
<iframe class="youtube-player" type="text/html" width="auto"
height="auto" ng-src="{{videoID}}"
allowfullscreen="" frameborder="0"> </iframe>
</div>
和
var app = angular.module('my-app', []);
app.controller('AppController', function ($scope, $sce) {
$scope.videoID = $sce.trustAsResourceUrl('http://www.youtube.com/embed/C0DPdy98e4c');
});
请参阅本文档.
这篇关于带有 iframe 的 AngularJs的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!