小程序
小游戏
企业微信
微信支付
扫描小程序码分享
公司名称
MP帐号(邮箱)
开发者微信号
机型(如iPhone 6s plus)
操作系统(如iOS 9.3)
是否必现
出现时间
操作路径(即如何操作可以复现该问题)
问题描述(具体问题介绍)
问题截图(客户端问题界面截图)
代码片段截图
1 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
<view class="section section_gap" style="text-align: center;">
<audio src="{{tempFilePath}}" poster="{{userInfo.avatarUrl}}" name="{{userInfo.nickName}}的声音" author="可点击左边播放按钮" action="{{audioAction}}" controls></audio>
</view>
下面方法录制成的silk文件不能被上面的播放,iphoneSE, 必现
startRecord: function () {
this.setData({ recording: true })
var that = this
var interval = setInterval(function () {
that.data.recordTime += 1
that.setData({
formatedRecordTime: util.formatTime(that.data.recordTime)
})
}, 1000)
wx.startRecord({
success: function (res) {
hasRecord: true,
tempFilePath: res.tempFilePath,
formatedPlayTime: util.formatTime(that.data.playTime)
},
complete: function () {
that.setData({ recording: false })
clearInterval(interval)
}
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
<view class="section section_gap" style="text-align: center;">
<audio src="{{tempFilePath}}" poster="{{userInfo.avatarUrl}}" name="{{userInfo.nickName}}的声音" author="可点击左边播放按钮" action="{{audioAction}}" controls></audio>
</view>
下面方法录制成的silk文件不能被上面的播放,iphoneSE, 必现
startRecord: function () {
this.setData({ recording: true })
var that = this
var interval = setInterval(function () {
that.data.recordTime += 1
that.setData({
formatedRecordTime: util.formatTime(that.data.recordTime)
})
}, 1000)
wx.startRecord({
success: function (res) {
that.setData({
hasRecord: true,
tempFilePath: res.tempFilePath,
formatedPlayTime: util.formatTime(that.data.playTime)
})
},
complete: function () {
that.setData({ recording: false })
clearInterval(interval)
}
})
},