为什么这个 jsfiddle不起作用?我无法获得videoId
. 如果我ngRoute
从模块中删除,那么它工作正常。
问问题
6929 次
1 回答
7
你需要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');
});
请参阅本文档。
于 2013-10-11T08:19:33.753 回答