onShareAppMessage: function(res) {
var that = this;
console.log("$$$$$" + JSON.stringify(this));
return {
success: function(res) {
setTimeout(function(){
that.videoContext.seek(20);
that.videoContext.play();
}, 500);
}
}
也测试了别的方法的callback中调用videoContext.play(),比如wx.showModal。
seek是工作的。
play就不工作。
Android手机上两个action都工作。
请问有人碰到如下问题吗?
onReady: function() {
this.videoContext = wx.createVideoContext(‘videoplayer’, this);
}
onShow: function() {
var self = this;
wx.showModal({
‘title’:“tips”,
‘content’:“confirm to play”,
success: function(res) {
self.videoContext.play();
}
})
}
这个就是相关代码。 wxml上面就是一个video标签。
android是可以的。开发IDE也是可以的。只有ios上面play不工作,但我尝试了self.videoContext.seek(20)是工作的。