3

为什么这个 jsfiddle不起作用?我无法获得videoId. 如果我ngRoute从模块中删除,那么它工作正常。

4

1 回答 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 回答