摘要:
一、wxml文件 <!-- 上传、下载、打开文件一步执行 --> <view class="handle"> <button bindtap="handleFile" type="primary">上传下载打开文件</button> <text>实现文件的上传、下载、打开一步到位</text> </ 阅读全文
posted @ 2021-07-19 17:26
AnnLing
阅读(1602)
评论(0)
推荐(0)
摘要:
一、wxml文件 1、写文本框,用来获取文件链接。 2、按钮,点击下载文件 <!-- 下载文件(word/excel/ppt/pdf等) --> <view class="inputContent"> <text>请输入下载链接:</text> <input type="text" bindinpu 阅读全文
posted @ 2021-07-19 16:04
AnnLing
阅读(3332)
评论(0)
推荐(1)
摘要:
说明 word/excel/ppt/pdf是从客户端会话选择文件。使用chooseMessageFile中选择文件。 一、wxml文件 上传按钮,绑定chooseFile <!--上传文件(word/excel/ppt/pdf等)到云存储--> <button bindtap="chooseFile 阅读全文
posted @ 2021-07-19 15:21
AnnLing
阅读(1749)
评论(0)
推荐(0)
摘要:
说明 图片/视频这类文件是从客户端会话选择文件。 一、wxml文件添加if切换显示 <!--上传文件到云存储--> <button bindtap="chooseImg" type="primary" >上传单张图片</button> <button bindtap="chooseVideo" ty 阅读全文
posted @ 2021-07-19 12:23
AnnLing
阅读(1976)
评论(0)
推荐(0)
摘要:
一、wxml文件 <!-- 上传视频到云存储 --> <button bindtap="chooseVideo" type="primary" class="uploadImg">上传单个视频</button> <view class="myImage"> <video src="{{videoUr 阅读全文
posted @ 2021-07-19 11:39
AnnLing
阅读(1848)
评论(0)
推荐(0)