- onShareAppMessage的副标题怎么添加?
如图,这个是腾讯新闻小程序的分享,这个线圈内的副标题是怎么加上去的?我看文档只有title,没其他可自定义的值了呀? [图片]
2018-07-05 - 组件的#shadow-root无法操作dom方法
我想操作video的play()方法,放在组件下的此事件方法没反应,我想应该是#shadow-root这个影响到了。请问这个要怎么解决?
2018-06-10 - 小程序异步加载的video标签,怎么操控play()方法?
<view class="list-media"> <video wx:if="{{data.url}}" id="{{data.id}}" class="media-video" src="{{data.url}}" bind:touchstart="bindPlay1"> <cover-view wx:if="{{isPause}}" class="controls" bind:touchstart="bindPlay"> <cover-view class="play"> <cover-image class="img" src="{{data._indexpic}}"/> </cover-view> </cover-view> </video> </view> [图片] js: bindPlay1 (event) { this.videoCtx = wx.createVideoContext(event.currentTarget.id, this) console.log(this.videoCtx) this.videoCtx.play() } [图片] 打印如下 [图片] 仍然无法播放
2018-06-09