小程序如何上传微信聊天记录的文件

wx.chooseMessageFile({
  count: 10,
  type: 'image',
  success (res) {
    // tempFilePath可以作为img标签的src属性显示图片
    const tempFilePaths = res.tempFiles
  }
})

参数说明
小程序如何上传微信聊天记录的文件_第1张图片
回调函数说明
小程序如何上传微信聊天记录的文件_第2张图片

你可能感兴趣的:(小程序,微信)