Deminic
Deminic
  • 发布:2020-03-31 16:34
  • 更新:2020-03-31 16:34
  • 阅读:1010

【报Bug】uni.chooseVideo录制视频后临时文件中没有视频文件

分类:uni-app

详细问题描述

【设备】酷比魔方CM360 Android9.0 内核4.4.146
使用uni.chooseVideo录制视频后临时路径下没有视频文件。

重现步骤

[步骤]
官方示例

<template>  
    <view>  
        <text>hello</text>  
        <button @tap="test">click me</button>  
        <video :src="src"></video>  
    </view>  
</template>  

<script>  
    export default {  
        data() {  
            return {  
                src: ''  
            }  
        },  
        onLoad() {  

        },  
        methods: {  
            test: function() {  
                var self = this;  
                uni.chooseVideo({  
                    success: function(res) {  
                        console.log(res)  
                        self.src = res.tempFilePath;  
                    }  
                });  
            }  
        }  
    }  
</script>  

<style>  

</style>

[结果]
在临时路径下没有视频文件

[HBuilderX开发uni-app项目]

2020-03-31 16:34 负责人:无 分享
已邀请:

该问题目前已经被锁定, 无法添加新回复