ビデオの終了後にdivを表示しようとしています。ビデオは終了した後にアラートが表示されますが、divはまだ表示されません。何が間違っていますか。 事前にお手伝いいただきありがとうございます。コントローラからの角度表示がありません
@section scripts
{
<script type="text/javascript" src="~/App/Controllers/TestController.js"></script>
}
<div ng-controller="TestController as ctrl" class="md-content" ng-cloak>
<h1>Test</h1>
<video id="myVideo" controls autoplay>
<source src="~/Videos/Test1.mp4">
</video>
<div id="test" ng-show="ui.showTest">
<h1>Test</h1>
Added this as a test to see if your controller is linked to the view
<p>{{ui.shouldSeeThis}}</p>
</div>
</div>
これは)コントローラ
angular.module('MyApp', ['ngMaterial', 'ngMessages'])
.controller('TestController', function ($scope, $http, $filter, $mdDialog) {
var vid;
function initializePlayer() {
vid = document.getElementById("myVideo");
vid.addEventListener('ended', videoFinish, false);
}
window.onload = initializePlayer;
$scope.ui = {
showTest: false,
//I've added this to see if your controller is linked to the view
shouldSeeThis: "Hello World"
};
function videoFinish() {
$scope.ui.showTest = true;
alert("VideoFinish");
}
}です。
あなたがそこに問題が何であるかを確実に知るためにここに十分な情報がありませんが、 *おそらく、 "常に角度バインディングでドットを使う"ルールの犠牲者です。 'ng-show'でプリミティブをバインドしました。プロトタイプの継承のためにこのプリミティブがアクセス不能になるのは非常に簡単です。プリミティブではなく、常にオブジェクトのプロパティをバインドする必要があります。 http://stackoverflow.com/questions/14049480/what-are-the-nuances-of-scope-prototypal-prototypical-inheritance-in-angularjs – Claies
を参照してください。コード全体を入力してください。 – Karim
あなたはビデオの後にshowTestの値が何であるかチェックします。 $ scopeは一意ではありません...あなたは{{showTest}}を書くことができますか、またはng-inspectorの方法を拡張することができるので、別の$ scopeに問題が発生する可能性があります。簡単な修正はオブジェクトを使用しています – Pablote