美文网首页
小程序日志 log appendfile fs_appendfi

小程序日志 log appendfile fs_appendfi

作者: ioido | 来源:发表于2020-08-21 15:43 被阅读0次

    小程序日志 log appendfile fs_appendfile:fail the maximum size fo the file storage limit is exceeded
    解决方法:

    // 每次启动,清除文件缓存
                wx.getSavedFileList({
                    success: function(res) {
                        for (var i=0;i<res.fileList.length;i++) {
                            wx.removeSavedFile({
                                filePath: res.fileList[i].filePath,
                                success:function(res) {
                                }
                            })
                        }
                    }
                })
    
    var fs = wx.getFileSystemManager()
                fs.readdir({
                    dirPath: wx.env.USER_DATA_PATH, // 本地用户目录
                    success(res) {
                        for (var i=0;i<res.files.length;i++){
                            // 清除所有本地用户文件,注意是否清除你保留的设置文件
                            fs.unlink({
                                filePath: wx.env.USER_DATA_PATH+'/'+res.files[i],
                                success(res) {
                                },
                                fail(err) {
                                    console.log(err)
                                }
                            })
                        }
                    },
                    fail(err) {
                        
                    }
                })
    

    相关文章

      网友评论

          本文标题:小程序日志 log appendfile fs_appendfi

          本文链接:https://www.haomeiwen.com/subject/ungujktx.html