私の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");
});
}
が、これではない作品。
あなたはiframe
にng-src
代わりのsrc
属性を使用する必要が私に