设为首页
收藏本站
Archiver
用户
登录
入住
用户名
Email
自动登录
找回密码
密码
登录
入住 CI 中国社区
首页
返回 CodeIgniter 中国首页
论坛
BBS
导读
Guide
个人主页
Space
中文手册
搜索
CodeIgniter 搜索引擎
视频教程
案例
任务
搜索
搜索
本版
帖子
用户
设为首页
收藏本站
Archiver
开启辅助访问
切换到宽版
日志
相册
分享
记录
CodeIgniter4
CodeIgniter3
CodeIgniter2
帖子
好友
道具
勋章
收藏
任务
记录
留言板
设置
我的收藏
退出
腾讯QQ
微信登录
CodeIgniter 中国开发者社区
»
论坛
›
CodeIgniter 开发
›
CodeIgniter 问答求助
›
CI3.1.13 force_download 没反应,附代码
返回列表
查看:
2340
|
回复:
3
[版本 3.x]
CI3.1.13 force_download 没反应,附代码
[复制链接]
iginter
iginter
当前离线
积分
10
IP卡
狗仔卡
发表于 2024-1-4 18:35:43
|
显示全部楼层
|
阅读模式
本帖最后由 iginter 于 2024-1-4 19:00 编辑
public function downloadtpl(){
$filePath01='uploads/tpls/tpl.txt';
if(file_exists($filePath01)){
$data=file_get_contents($filePath01);
echo $data;
// $this->load->helper('download');
// force_download('stockTpl.txt', $data);
}else{
show_error('bad file');
}
}
复制代码
前端为
JS
复制代码
$
(
'#downfile'
)
.
click
(
function
(
)
{
$.
post
(
' downloadtpl'
)
;
}
)
;
复制代码
到echo $data这·一行运行是正常的,浏览器能显示文本中的内容;但把下面两句注释去掉后执行,没有任何反应,浏览器调试,发现执行也是200,搜索N多,不明白是哪里有问题,新入CI请指教
回复
使用道具
举报
提升卡
置顶卡
沉默卡
喧嚣卡
变色卡
千斤顶
显身卡
zidon
zidon
当前离线
积分
103
IP卡
狗仔卡
发表于 2024-1-5 22:32:22
|
显示全部楼层
PHP
复制代码
public
function
downloadtpl
(
)
{
$filePath01
=
'uploads/tpls/tpl.txt'
;
if
(
file_exists
(
$filePath01
)
)
{
$data
=
file_get_contents
(
$filePath01
)
;
$this
->
load
->
helper
(
'download'
)
;
force_download
(
'stockTpl.txt'
,
$data
,
'application/octet-stream'
)
;
}
else
{
show_error
(
'bad file'
)
;
}
}
复制代码
试试这样可以吗?
回复
支持
反对
使用道具
举报
显身卡
iginter
iginter
当前离线
积分
10
IP卡
狗仔卡
楼主
|
发表于 2024-1-13 15:08:34
|
显示全部楼层
zidon 发表于 2024-1-5 22:32
试试这样可以吗?
感谢答复。
还是不行,我换直链下载了。
回复
支持
反对
使用道具
举报
显身卡
qq291561792
qq291561792
当前离线
积分
3
IP卡
狗仔卡
发表于 2024-2-23 17:22:09
|
显示全部楼层
js部分改成
本帖最后由 qq291561792 于 2024-2-23 17:23 编辑
$.post(' downloadtpl');
改成
if ( $('#iframe_box').length == 0 ){
var tmpdiv = document.createElement('div');
tmpdiv.id = 'iframe_box';
tmpdiv.style='width:1px; height:1px;';
document.body.appendChild(tmpdiv);
}
var iframe = document.createElement('iframe');
iframe.src = "downloadtpl";
iframe.width = 1;
iframe.height = 1;
$("#iframe_box").find('iframe').remove();
$("#iframe_box").get(0).appendChild(iframe);
回复
支持
反对
使用道具
举报
显身卡
返回列表
高级模式
B
Color
Image
Link
Quote
Code
Smilies
您需要登录后才可以回帖
登录
|
入住 CI 中国社区
本版积分规则
发表回复
回帖后跳转到最后一页