// index.wxml
<view bindtap="upLoadFile">
文件上传
</view>
// index.js
// 文件上传
upLoadFile(res){
// 选择文件
wx.chooseImage({
count: 0,
success: (res) => {
// 上传到云存储
wx.cloud.uploadFile({
cloudPath: "test.png",
filePath: res.tempFilePaths[0],
success: (res) => {
console.log(res)
}
})
}
})
},
相关文章
- 09-27微信小程序 下载视频 图片
- 09-27LayUI实现 文件的多个上传以及回显
- 09-27基于nginx网关的浏览器上传大文件失败问题分析
- 09-27使用putty组件向服务器上传或下载文件
- 09-27创建 userSettings/Microsoft.SqlServer.Configuration.LandingPage.Properties.Settings 的配置节处理程序时出错: 未能加载文件或程序集“System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089”或它的某一个依赖项。系统没找到指定的文件
- 09-27Python 猜数小程序(练习)
- 09-27Struts文件上传allowedTypes问题,烦人的“允许上传的文件类型”
- 09-27TFboy养成记 简单小程序(Variable & placeholder)
- 09-27SpringBoot 在线协同办公小程序开发 全栈式项目实战
- 09-27Ajax简单实现文件异步上传的多种方法