2016-11-07 15 views
-1

私のmysqlデータベースにビデオをアップロードします。私はそれの場所を持っています。私はそのビデオを読み込もうとしません。anglejsでビデオを読み込んで再生できません

私の角度コードを以下に示します。ここで私のビデオ

私のhtmlコード

<iframe src="{{videodata}}" width="50%" height="400px" ></iframe> 

のパスから

$scope.videoApi = function(id) {  
    $http({ 
     method: "POST", 
     url: "http://192.168.1.16:8070/courseapi/getpdf", 
     data: { 
     'id_course': id 
     } 
    }).then(function mySucces(response) { 
     alert("listapi" + response.data); 
     $scope.videodata = response.data; 
     //$scope.currentProjectUrl = $sce.trustAsResourceUrl($scope.videodata[0].course_Attachments); 
     }, function myError(response) { 
      $scope.message = response.statusText; 
      console.log(response.statusText); 
      alert("courseEnrolled"); 
     }); 
    } 

が、これではない作品。

あなたはiframeng-src代わりのsrc属性を使用する必要が私に

答えて

0
$scope.videodata = $sce.trustAsResourceUrl("https://www.youtube.com/embed/XGSy3_Czz8k"); 

私はあなたが

<iframe width="420" height="315" src="{{videodata}}"> 
    </iframe> 
としてiframe.and iframe内にビデオのURLを与える必要があると思います
関連する問題