带有 iframe 的 AngularJs
为什么 这个 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');
});
请参阅本文档.
相关文章