您好,欢迎来到三六零分类信息网!老站,搜索引擎当天收录,欢迎发信息

微信小程序下载文件,如何通过后端PHP处理

2025/6/18 18:05:44发布17次查看
场景:微信小程序调用 wx.downloadfile() api 下载文件,php后端做处理并返回文件流程;
流程:
1.小程序展示需要下载的文件列表;
2.点击下载后请求php接口,携带一个参数为想要下载的文件名;
3.在php接收该参数,然后在文件夹查找是否有该文件;
4.找到文件后把该文件返回给小程序端;
5.小程序端保存后端返回的文件,点击打开文件,实现预览
小程序端代码:
wxml
<view>文件列表</view><view wx:for='{{search_store}}' wx:key='{{index}}'> <view bindtap='dom' id='{{index}}'>文件名:{{item.filename}} 点击下载</view></view>
js
dom: function (e) { var index = e.currenttarget.id; var data = this.data.search_store[index].filename var that = this; wx.downloadfile({ url: 'https://dwb.lynncain.cn/h5/dom.php?str=' + data, //下载路径携带 参数=文件名 success: function (res) { console.log(res.tempfilepath) wx.savefile({ //下载成功后保存 tempfilepath: res.tempfilepath, success: function (res) { wx.showtoast({ title: '下载成功!', }) wx.getsavedfilelist({ //获取下载的文件列表保存到data success: function (rrr) { console.log(rrr.filelist) that.setdata({ filelist: rrr.filelist }) } }) } }) } }) },
php
<?php header("access-control-allow-origin: *"); //解决跨域 header('access-control-allow-methods:get');// 响应类型 header('access-control-allow-headers:*'); // 响应头设置 $link=mysql_connect("localhost","root","root"); mysql_select_db("new_test", $link); //选择数据库 mysql_query("set names utf8");//解决中文乱码问题error_reporting(0);$str = $_get['str'];$file_path="upload/".$str;if (! file_exists ( $file_path )) { header('http/1.1 404 not found'); } else { //以只读和二进制模式打开文件 $file = fopen ( $file_path, "rb" ); //告诉浏览器这是一个文件流格式的文件 header ( "content-type: application/octet-stream" ); //请求范围的度量单位 header ( "accept-ranges: bytes" ); //content-length是指定包含于请求或响应中数据的字节长度 header ( "accept-length: " . filesize ( $file_path ) ); //用来告诉浏览器,文件是可以当做附件被下载,下载后的文件名称为$file_name该变量的值。header ( "content-disposition: attachment; filename=" . $str ); //读取文件内容并直接输出到浏览器 echo fread ( $file, filesize ( $file_path ) ); fclose ( $file ); exit (); } ?>
本文介绍了微信小程序下载文件,如何通过后端php处理,更多相关知识请关注。
相关推荐:
关于冒泡,二分法插入,快速排序算法的介绍
讲解php 支持断点续传的文件下载类的相关内容
如何通过php 过滤html标记属性类
以上就是微信小程序下载文件,如何通过后端php处理的详细内容。
该用户其它信息

VIP推荐

免费发布信息,免费发布B2B信息网站平台 - 三六零分类信息网 沪ICP备09012988号-2
企业名录 Product