录像接口的视频地址,是保存在本地电脑的什么位置了呢?
发布于 6 年前 作者 zhanggang 6232 次浏览 来自 官方Issues
startRecord(){
   camera.startRecord()
 },
 stopRecord(){
   camera.stopRecord({
     success:res=>{
       console.log(res)
       this.setData({
         tempVideoPath: res.tempVideoPath
       })
     },
     fail:err=>{
       console.log(err)
     }
   })
 }
回到顶部