wx.chooseMessageFile({
count: 1,
type: 'file',
success(res) {
var filename = res.tempFiles[0].name
var tempFilesSize = res.tempFiles[0].size;
var filename_extension = res.tempFiles[0].name.substring(res.tempFiles[0].name.lastIndexOf(".") + 1);
console.log("-------------获取选择文件名---------------" + res.tempFiles[0].name)
console.log("-------------获取选择文件后缀---------------" + filename_extension)
console.log("-------------获取选择文件大小---------------" + res.tempFiles[0].size)
wx.showLoading({
title: '上传中',
})
}
})
同问,请问解决了吗
同问,解决了吗
你好,麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)