小程序中文件相关api总结

wx.saveFile(OBJECT)

保存文件到本地。注意:saveFile 会把临时文件移动,因此调用成功后传入的 tempFilePath 将不可用

OBJECT参数说明:

参数名类型必填说明
countNumber最多可以选择的图片张数,默认9
sizeTypeStringArrayoriginal 原图,compressed 压缩图,默认二者都有
sourceTypeStringArrayalbum 从相册选图,camera 使用相机,默认二者都有
successFunction成功则返回图片的本地文件路径列表 tempFilePaths
failFunction接口调用失败的回调函数
completeFunction接口调用结束的回调函数(调用成功、失败都会执行)

success返回参数说明:

参数说明
savedFilePath文件的保存路径
wx.chooseImage({
  success: function(res) {
    var tempFilePaths = res.tempFilePaths
    wx.saveFile({
      tempFilePath: tempFilePaths[0],
      success: function(res) {
        var savedFilePath = res.savedFilePath
      }
    })
  }
})

tip: 本地文件存储的大小限制为 10M

wx.getSavedFileList(OBJECT)

获取本地已保存的文件列表

参数名类型必填说明
successFunction接口调用成功的回调函数,返回结果见success返回参数说明
failFunction接口调用失败的回调函数
completeFunction接口调用结束的回调函数(调用成功、失败都会执行)

success返回参数说明:

参数类型说明
errMsgString接口调用结果
fileListObject Array文件列表

fileList中的项目说明:

类型说明
filePathString文件的本地路径
createTimeNumber文件的保存时的时间戳,从1970/01/01 08:00:00 到当前时间的秒数
sizeNumber文件大小,单位B
wx.getSavedFileList({
  success: function(res) {
    console.log(res.fileList)
  }
})

wx.getSavedFileInfo(OBJECT)

获取本地文件的文件信息。此接口只能用于获取已保存到本地的文件,若需要获取临时文件信息,请使用 wx.getFileInfo 接口

OBJECT参数说明:

参数名类型必填说明
filePathString文件路径
successFunction接口调用成功的回调函数,返回结果见success返回参数说明
failFunction接口调用失败的回调函数
completeFunction接口调用结束的回调函数(调用成功、失败都会执行)

success返回参数说明:

参数类型说明
errMsgString接口调用结果
sizeNumber文件大小,单位B
createTimeNumber文件保存时的时间戳,从1970/01/01 08:00:00 到该时刻的秒数
wx.getSavedFileInfo({
  filePath: 'wxfile://somefile', //仅做示例用,非真正的文件路径
  success: function(res) {
    console.log(res.size)
    console.log(res.createTime)
  }
})

wx.removeSavedFile(OBJECT)

删除本地存储的文件

OBJECT参数说明:

参数名类型必填说明
filePathString需要删除的文件路径
successFunction接口调用成功的回调函数
failFunction接口调用失败的回调函数
completeFunction接口调用结束的回调函数(调用成功、失败都会执行)
wx.getSavedFileList({
  success: function(res) {
    if (res.fileList.length > 0){
      wx.removeSavedFile({
        filePath: res.fileList[0].filePath,
        complete: function(res) {
          console.log(res)
        }
      })
    }
  }
})

wx.openDocument(OBJECT)

新开页面打开文档,支持格式:doc, xls, ppt, pdf, docx, xlsx, pptx

OBJECT参数说明:

参数名类型必填说明最低版本
filePathString文件路径,可通过 downFile 获得
fileTypeString文件类型,指定文件类型打开文件,有效值 doc, xls, ppt, pdf, docx, xlsx, pptx1.4.0
successFunction接口调用成功的回调函数
failFunction接口调用失败的回调函数
completeFunction接口调用结束的回调函数(调用成功、失败都会执行)
wx.downloadFile({
  url: 'http://example.com/somefile.pdf',
  success: function (res) {
    var filePath = res.tempFilePath
    wx.openDocument({
      filePath: filePath,
      success: function (res) {
        console.log('打开文档成功')
      }
    })
  }
})

文件管理器

FileSystemManager:文件管理器。基础库 1.9.9 开始支持,低版本需做兼容处理

方法

FileSystemManager.access(Object object):判断文件/目录是否存在

FileSystemManager.appendFile(Object object):在文件结尾追加内容

FileSystemManager.saveFile(Object object):保存临时文件到本地。此接口会移动临时文件,因此调用成功后,tempFilePath 将不可用。

FileSystemManager.getSavedFileList():获取该小程序下已保存的本地缓存文件列表

FileSystemManager.removeSavedFile(Object object):删除该小程序下已保存的本地缓存文件

FileSystemManager.copyFile(Object object):复制文件

FileSystemManager.getFileInfo(Object object):获取该小程序下的 本地临时文件 或 本地缓存文件 信息

FileSystemManager.mkdir(Object object):创建目录

FileSystemManager.readdir(Object object):读取目录内文件列表

FileSystemManager.readFile(Object object):读取本地文件内容

FileSystemManager.rename(Object object):重命名文件,可以把文件从 oldPath 移动到 newPath

FileSystemManager.rmdir(Object object):删除目录

Stats FileSystemManager.stat(Object object):获取文件 Stats 对象

FileSystemManager.unlink(Object object):删除文件

FileSystemManager.unzip(Object object):解压文件

FileSystemManager.writeFile(Object object):写文件

FileSystemManager wx.getFileSystemManager()

获取全局唯一的文件管理器。基础库 1.9.9 开始支持,低版本需做兼容处理

返回值

FileSystemManager:文件管理器

FileSystemManager.appendFile(Object object)

在文件结尾追加内容。基础库 2.1.0 开始支持,低版本需做兼容处理

参数

属性类型默认值必填说明支持版本
filePathString 要追加内容的文件路径
datastring/ArrayBuffer 要追加的文本或二进制数据
encodingstringutf8要追加的文本或二进制数据
successFunction 指定写入文件的字符编码
failFunction 接口调用失败的回调函数
completeFunction 接口调用结束的回调函数(调用成功、失败都会执行)

object.encoding 的合法值

说明
ascii
base64
binary
hex
ucs2/ucs-2/utf16le/utf-16le以小端序读取
utf-8/utf8
latin1

fail 回调函数

属性类型说明支持版本
errMsgString错误信息

res.errMsg 的合法值

说明
fail no such file or directory, open ${filePath}指定的 filePath 文件不存在
fail illegal operation on a directory, open "${filePath}"指定的 filePath 是一个已经存在的目录
fail permission denied, open ${dirPath}指定的 filePath 路径没有写权限
fail sdcard not mounted指定的 filePath 是一个已经存在的目录

FileSystemManager.access(Object object)

判断文件/目录是否存在。基础库 1.9.9 开始支持,低版本需做兼容处理

参数

属性类型默认值必填说明支持版本
pathstring 要判断是否存在的文件/目录路径
successFunction 指定写入文件的字符编码
failFunction 接口调用失败的回调函数
completeFunction 接口调用结束的回调函数(调用成功、失败都会执行)

fail 回调函数

属性类型说明支持版本
errMsgstring错误信息

res.errMsg 的合法值

说明
fail no such file or directory ${path}文件/目录不存在

FileSystemManager.accessSync(string path)

FileSystemManager.access 的同步版本。基础库 1.9.9 开始支持,低版本需做兼容处理

参数

string path:要判断是否存在的文件/目录路径

错误

errMsg说明
fail no such file or directory ${path}文件/目录不存在

FileSystemManager.appendFileSync(string filePath, string|ArrayBuffer data, string encoding)

FileSystemManager.appendFile 的同步版本。基础库 2.1.0 开始支持,低版本需做兼容处理

参数

string filePath:要追加内容的文件路径

string|ArrayBuffer data:要追加的文本或二进制数据

string encoding:指定写入文件的字符编码

encoding 的合法值

说明
ascii
base64
binary
hex
ucs2/ucs-2/utf16le/utf-16le以小端序读取
utf-8/utf8
latin1

错误

errMsg说明
fail no such file or directory ${path}文件/目录不存在
fail illegal operation on a directory, open "${filePath}"指定的 filePath 是一个已经存在的目录
fail permission denied, open ${dirPath}指定的 filePath 路径没有写权限
fail sdcard not mounted指定的 filePath 是一个已经存在的目录

FileSystemManager.copyFile(Object object)

复制文件。基础库 1.9.9 开始支持,低版本需做兼容处理

参数

属性类型默认值必填说明支持版本
srcPathstring 源文件路径,只可以是普通文件
destPathstring 目标文件路径
successFunction 指定写入文件的字符编码
failFunction 接口调用失败的回调函数
completeFunction 接口调用结束的回调函数(调用成功、失败都会执行)

fail 回调函数

属性类型说明支持版本
errMsgstring错误信息

res.errMsg 的合法值

说明
fail permission denied, copyFile ${srcPath} -> ${destPath}指定目标文件路径没有写权限
fail no such file or directory, copyFile ${srcPath} -> ${destPath}源文件不存在,或目标文件路径的上层目录不存在

FileSystemManager.copyFileSync(string srcPath, string destPath)

FileSystemManager.copyFile 的同步版本。基础库 1.9.9 开始支持,低版本需做兼容处理

参数

string srcPath:源文件路径,只可以是普通文件

string destPath:目标文件路径

错误

errMsg说明
fail permission denied, copyFile ${srcPath} -> ${destPath}指定目标文件路径没有写权限
fail no such file or directory, copyFile ${srcPath} -> ${destPath}源文件不存在,或目标文件路径的上层目录不存在

FileSystemManager.getSavedFileList(Object object)

获取该小程序下已保存的本地缓存文件列表。基础库 1.9.9 开始支持,低版本需做兼容处理

参数

属性类型默认值必填说明支持版本
successFunction 指定写入文件的字符编码
failFunction 接口调用失败的回调函数
completeFunction 接口调用结束的回调函数(调用成功、失败都会执行)

success 回调函数

参数

属性类型说明支持版本
fileListObject文件数组,每一项是一个 FileItem

res.fileList 的结构

属性类型说明支持版本
filePathstring本地路径
sizenumber本地文件大小,以字节为单位
createTimenumber文件创建时间

FileSystemManager.getFileInfo(Object object)

获取该小程序下的 本地临时文件 或 本地缓存文件 信息。基础库 1.9.9 开始支持,低版本需做兼容处理

参数

属性类型默认值必填说明支持版本
filePathstring 要读取的文件路径
successFunction 接口调用成功的回调函数
failFunction 接口调用失败的回调函数
completeFunction 接口调用结束的回调函数(调用成功、失败都会执行)

success 回调函数

属性类型说明支持版本
sizenumber文件大小,以字节为单位

fail 回调函数

属性类型说明支持版本
errMsgstring错误信息

res.errMsg 的合法值

说明
fail file not exist指定的 filePath 找不到文件

FileSystemManager.mkdir(Object object)

创建目录。基础库 1.9.9 开始支持,低版本需做兼容处理

参数

属性类型默认值必填说明支持版本
dirPathstring 创建的目录路径
successFunction 接口调用成功的回调函数
failFunction 接口调用失败的回调函数
completeFunction 接口调用结束的回调函数(调用成功、失败都会执行)

fail 回调函数

属性类型说明支持版本
errMsgstring错误信息

res.errMsg 的合法值

说明
fail no such file or directory ${dirPath}上级目录不存在
fail permission denied, open ${dirPath}指定的 filePath 路径没有写权限
fail file already exists ${dirPath}有同名文件或目录

FileSystemManager.mkdirSync(string dirPath)

FileSystemManager.mkdir 的同步版本。基础库 1.9.9 开始支持,低版本需做兼容处理

参数

string dirPath:创建的目录路径

错误

errMsg说明
fail no such file or directory ${dirPath}上级目录不存在
fail permission denied, open ${dirPath}指定的 filePath 路径没有写权限
fail file already exists ${dirPath}有同名文件或目录

FileSystemManager.removeSavedFile(Object object)

删除该小程序下已保存的本地缓存文件。基础库 1.9.9 开始支持,低版本需做兼容处理

参数

属性类型默认值必填说明支持版本
filePathstring 需要删除的文件路径
successFunction 接口调用成功的回调函数
failFunction 接口调用失败的回调函数
completeFunction 接口调用结束的回调函数(调用成功、失败都会执行)

fail 回调函数

属性类型说明支持版本
errMsgstring错误信息

res.errMsg 的合法值

说明
(fail file not exist)指定的 tempFilePath 找不到文件

string|ArrayBuffer FileSystemManager.readFileSync(string filePath, string encoding)

FileSystemManager.readFile 的同步版本。基础库 1.9.9 开始支持,低版本需做兼容处理

参数

string filePath:要读取的文件的路径

string encoding:指定读取文件的字符编码,如果不传 encoding,则以 ArrayBuffer 格式读取文件的二进制内容

encoding 的合法值

说明
ascii
base64
binary
hex
ucs2/ucs-2/utf16le/utf-16le以小程序读取
utf-8/utf8
latin1

返回值

string|ArrayBuffer data:文件内容

错误

errMsg说明
fail no such file or directory, open ${filePath}指定的 filePath 所在目录不存在
fail permission denied, open ${dirPath}指定的 filePath 路径没有读权限

FileSystemManager.renameSync(string oldPath, string newPath)

FileSystemManager.rename 的同步版本。基础库 1.9.9 开始支持,低版本需做兼容处理

参数

string oldPath:源文件路径,可以是普通文件或目录

string newPath:新文件路径

错误

errMsg说明
fail permission denied, rename ${oldPath} -> ${newPath}指定源文件或目标文件没有写权限
fail no such file or directory, rename ${oldPath} -> ${newPath}源文件不存在,或目标文件路径的上层目录不存在

FileSystemManager.rmdirSync(string dirPath)

FileSystemManager.rmdir 的同步版本。基础库 1.9.9 开始支持,低版本需做兼容处理

参数

string dirPath:要删除的目录路径

错误

errMsg说明
fail no such file or directory ${dirPath}目录不存在
fail directory not empty目录不为空
fail permission denied, open ${dirPath}指定的 dirPath 路径没有写权限

FileSystemManager.readdir(Object object)

读取目录内文件列表。基础库 1.9.9 开始支持,低版本需做兼容处理

参数

属性类型默认值必填说明支持版本
dirPathstring 要读取的目录路径
successFunction 接口调用成功的回调函数
failFunction 接口调用失败的回调函数
completeFunction 接口调用结束的回调函数(调用成功、失败都会执行)

success 回调函数

属性类型说明支持版本
filesArray.指定目录下的文件名数组

fail 回调函数

参数

属性类型说明支持版本
errMsgstring错误信息

res.errMsg 的合法值

说明
fail no such file or directory ${dirPath}目录不存在
fail not a directory ${dirPath}dirPath 不是目录
fail permission denied, open ${dirPath}指定的 dirPath 路径没有写权限

FileSystemManager.rename(Object object)

重命名文件,可以把文件从 oldPath 移动到 newPath。基础库 1.9.9 开始支持,低版本需做兼容处理

参数

属性类型默认值必填说明支持版本
oldPathstring 源文件路径,可以是普通文件或目录
newPathstring 新文件路径
successFunction 接口调用成功的回调函数
failFunction 接口调用失败的回调函数
completeFunction 接口调用结束的回调函数(调用成功、失败都会执行)

fail 回调函数

参数

属性类型说明支持版本
errMsgstring错误信息

res.errMsg 的合法值

说明
fail permission denied, rename ${oldPath} -> ${newPath}指定源文件或目标文件没有写权限
fail no such file or directory, rename ${oldPath} -> ${newPath}源文件不存在,或目标文件路径的上层目录不存在

FileSystemManager.readFile(Object object)

读取本地文件内容。基础库 1.9.9 开始支持,低版本需做兼容处理

参数

属性类型默认值必填说明支持版本
filePathstring 要读取的文件的路径
encodingstring 指定读取文件的字符编码,如果不传 encoding,则以 ArrayBuffer 格式读取文件的二进制内容
successFunction 接口调用成功的回调函数
failFunction 接口调用失败的回调函数
completeFunction 接口调用结束的回调函数(调用成功、失败都会执行)

object.encoding 的合法值

说明
ascii
base64
binary
hex
ucs2/ucs-2/utf16le/utf-16le以小程序读取
utf-8/utf8
latin1

success 回调函数

参数

属性类型说明支持版本
datastring/ArrayBuffer文件内容

fail 回调函数

参数

属性类型说明支持版本
errMsgstring错误信息

res.errMsg 的合法值

说明
fail no such file or directory, open ${filePath}指定的 filePath 所在目录不存在
fail permission denied, open ${dirPath}指定的 filePath 路径没有读权限

FileSystemManager.rmdir(Object object)

删除目录。基础库 1.9.9 开始支持,低版本需做兼容处理

参数

属性类型默认值必填说明支持版本
dirPathstring 要删除的目录路径
successFunction 接口调用成功的回调函数
failFunction 接口调用失败的回调函数
completeFunction 接口调用结束的回调函数(调用成功、失败都会执行)

fail 回调函数

参数

属性类型说明支持版本
errMsgstring错误信息

res.errMsg 的合法值

说明
fail no such file or directory ${dirPath}目录不存在
fail directory not empty目录不为空
fail permission denied, open ${dirPath}指定的 filePath 路径没有读权限

Array. FileSystemManager.readdirSync(string dirPath)

FileSystemManager.readdir 的同步版本。基础库 1.9.9 开始支持,低版本需做兼容处理

参数

string dirPath:要读取的目录路径

返回值

Array. files:指定目录下的文件名数组

错误

errMsg说明
fail no such file or directory ${dirPath}目录不存在
fail not a directory ${dirPath}dirPath 不是目录
fail permission denied, open ${dirPath}指定的 dirPath 路径没有写权限

FileSystemManager.saveFile(Object object)

保存临时文件到本地。此接口会移动临时文件,因此调用成功后,tempFilePath 将不可用。基础库 1.9.9 开始支持,低版本需做兼容处理

参数

属性类型默认值必填说明支持版本
tempFilePathstring 临时存储文件路径
filePathstring 要存储的文件路径
successFunction 接口调用成功的回调函数
failFunction 接口调用失败的回调函数
completeFunction 接口调用结束的回调函数(调用成功、失败都会执行)

success 回调函数

属性类型说明支持版本
savedFilePathnumber存储后的文件路径

fail 回调函数

属性类型说明支持版本
errMsgstring错误信息

res.errMsg 的合法值

说明
fail tempFilePath file not exist指定的 tempFilePath 找不到文件
fail permission denied, open "${filePath}"指定的 filePath 路径没有写权限
fail no such file or directory "${dirPath}"上级目录不存在

number FileSystemManager.saveFileSync(string tempFilePath, string filePath)

FileSystemManager.saveFile 的同步版本。基础库 1.9.9 开始支持,低版本需做兼容处理

参数

string tempFilePath:临时存储文件路径

string filePath:要存储的文件路径

返回值

number savedFilePath:存储后的文件路径

错误

errMsg说明
fail tempFilePath file not exist指定的 tempFilePath 找不到文件
fail permission denied, open "${filePath}"指定的 filePath 路径没有写权限
fail no such file or directory "${dirPath}"上级目录不存在

Stats FileSystemManager.stat(Object object)

获取文件 Stats 对象。基础库 1.9.9 开始支持,低版本需做兼容处理

属性类型默认值必填说明支持版本
pathstring 文件/目录路径
successFunction 接口调用成功的回调函数
failFunction 接口调用失败的回调函数
completeFunction 接口调用结束的回调函数(调用成功、失败都会执行)

success 回调函数

属性类型说明支持版本
statStats一个 Stats 对象

fail 回调函数

属性类型说明支持版本
errMsgstring错误信息

res.errMsg 的合法值

说明
fail permission denied, open ${path}指定的 path 路径没有读权限
fail no such file or directory ${path}文件不存在

返回值

Stats

Stats FileSystemManager.statSync(string path)

FileSystemManager.stat 的同步版本。基础库 1.9.9 开始支持,低版本需做兼容处理

参数

string path:文件/目录路径

返回值

Stats stat:一个 Stats 对象

错误

errMsg说明
fail permission denied, open ${path}指定的 path 路径没有读权限
fail no such file or directory ${path}文件不存在

Stats

描述文件状态的对象。基础库 1.9.9 开始支持,低版本需做兼容处理

属性

string mode:文件的类型和存取的权限,对应 POSIX stat.st_mode

number size:文件大小,单位:B,对应 POSIX stat.st_size

number lastAccessedTime:文件最近一次被存取或被执行的时间,UNIX 时间戳,对应 POSIX stat.st_atime

number lastModifiedTime:文件最后一次被修改的时间,UNIX 时间戳,对应 POSIX stat.st_mtime

方法

boolean Stats.isDirectory():判断当前文件是否一个目录

boolean Stats.isFile():判断当前文件是否一个普通文件

boolean Stats.isDirectory()

判断当前文件是否一个目录。基础库 1.9.9 开始支持,低版本需做兼容处理

返回值

boolean:表示当前文件是否一个目录

boolean Stats.isFile()

判断当前文件是否一个普通文件。基础库 1.9.9 开始支持,低版本需做兼容处理

返回值

boolean:表示当前文件是否一个普通文件

FileSystemManager.unlink(Object object)

删除文件。基础库 1.9.9 开始支持,低版本需做兼容处理。

参数

属性类型默认值必填说明支持版本
filePathstring 要删除的文件路径
successFunction 接口调用成功的回调函数
failFunction 接口调用失败的回调函数
completeFunction 接口调用结束的回调函数(调用成功、失败都会执行)

fail 回调函数

属性类型说明支持版本
errMsgstring错误信息

res.errMsg 的合法值

说明
fail permission denied, open ${path}指定的 path 路径没有读权限
fail no such file or directory ${path}文件不存在
fail operation not permitted, unlink ${filePath}传入的 filePath 是一个目录

FileSystemManager.unzip(Object object)

解压文件。基础库 1.9.9 开始支持,低版本需做兼容处理

参数

属性类型默认值必填说明支持版本
zipFilePathstring 源文件路径,只可以是 zip 压缩文件
targetPathstring 目标目录路径
successFunction 接口调用成功的回调函数
failFunction 接口调用失败的回调函数
completeFunction 接口调用结束的回调函数(调用成功、失败都会执行)

fail 回调函数

属性类型说明支持版本
errMsgstring错误信息

res.errMsg 的合法值

说明
fail permission denied, unzip ${zipFilePath} -> ${destPath}指定目标文件路径没有写权限
fail no such file or directory, unzip ${zipFilePath} -> "${destPath}源文件不存在,或目标文件路径的上层目录不存在

FileSystemManager.unlinkSync(string filePath)

FileSystemManager.unlink 的同步版本。基础库 1.9.9 开始支持,低版本需做兼容处理

参数

string filePath:要删除的文件路径

错误

errMsg说明
fail permission denied, open ${path}指定的 path 路径没有读权限
fail no such file or directory ${path}文件不存在
fail operation not permitted, unlink ${filePath}传入的 filePath 是一个目录

FileSystemManager.writeFile(Object object)

写文件。基础库 1.9.9 开始支持,低版本需做兼容处理

参数

属性类型默认值必填说明支持版本
filePathstring 要写入的文件路径
datastring/ArrayBuffer 要写入的文本或二进制数据
encodingstringutf8指定写入文件的字符编码
successFunction 接口调用成功的回调函数
failFunction 接口调用失败的回调函数
completeFunction 接口调用结束的回调函数(调用成功、失败都会执行)

object.encoding 的合法值

说明
ascii
base64
binary
hex
ucs2/ucs-2/utf16le/utf-16le以小程序读取
utf-8/utf8
latin1

fail 回调函数

属性类型说明支持版本
errMsgstring错误信息

res.errMsg 的合法值

说明
fail no such file or directory, open ${filePath}指定的 filePath 所在目录不存在
fail permission denied, open ${dirPath}指定的 filePath 路径没有写权限

FileSystemManager.writeFileSync(string filePath, string|ArrayBuffer data, string encoding)

FileSystemManager.writeFile 的同步版本。基础库 1.9.9 开始支持,低版本需做兼容处理

参数

string filePath:要写入的文件路径

string|ArrayBuffer data:要写入的文本或二进制数据

string encoding:指定写入文件的字符编码

encoding 的合法值

说明
ascii
base64
binary
hex
ucs2/ucs-2/utf16le/utf-16le以小程序读取
utf-8/utf8
latin1

错误

说明
fail no such file or directory, open ${filePath}指定的 filePath 所在目录不存在
fail permission denied, open ${dirPath}指定的 filePath 路径没有写权限
  • 1
    点赞
  • 7
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值