我想用dotvvm建立一个视频演示网站。 当没有任何反应时,它必须在每次从列表中的新视频开始。 使用bootstrap / MediaObject我找不到事件'视频就绪播放',因此我们可以开始下一个视频。 使用Dotvvm解决这个问题的最佳方法是什么,我不想回到角度来看这个。
BAS
更新: 这时我使用的是html5标签,还有一个dotvvm组件吗? 样品:
<dot:Content ContentPlaceHolderID="ContentTemplate">
<div class="page">
<video ID="video1" width="320" height="240" autoplay>
<source src="/Style/video/video1.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<button onclick="playPause()">Play/Pause</button>
</div>
<script>
var myVideo = document.getElementById("video1");
function playPause() {
if (myVideo.paused)
myVideo.play();
else
myVideo.pause();
}
myVideo.addEventListener("ended", function () {
//get next video from viewmodel, (not hard coded)
var nextVideo = "/Style/video/video2.mp4"
myVideo.setAttribute("src", nextVideo)
//load
myVideo.load();
// switch of sound
myVideo.muted = true;
// play
myVideo.play();
}, true);
</script>
我们可以从viewModel获取nextVideo吗?我们该怎么做?
答案 0 :(得分:0)
1)设置javascript变量
您可以这样设置-例如。通过带有命令的按钮
MyView.dothtml
...
<dot:button Click="{command: SetNextVideo()}" Text="Set next video" />
...
MyViewModel.cs
....
IDotvvmRequestContext _requestContext;
...
public void SetNextVideo()
{
//_requestContext.ResourceManager.AddStartupScript("alert('my javascript after command');");
_requestContext.ResourceManager.AddStartupScript("nextVideo = ...... ");
}
2。获取View中Viewmodel属性的当前值
或者您可以在viewmodel中声明声明字符串属性,并且在您的javascript中,可以通过敲除调用获取当前值,如下所示:
Viewmodel
public string MyFoo {get;set;} = "bar";
查看:
<script>
....
alert( ko.toJS(dotvvm.viewModels.root.viewModel.MyFoo) );
</script>
这取决于您的脚本真正要做什么:)