请问这个 TP5 框架的页面,只要我一调用函数就疯狂重新加载是怎么回事?

发布于 2022-09-11 23:37:11 字数 4603 浏览 14 评论 0

请问一下这个代码需要修改什么地方,现在我就在页面加载的时候通过 self::zip($test)调用了一下那个函数,但是只要一加这一句网页就疯狂重新加载,去掉就好了请问各位大哥该如何修改呢?

<?php

namespace app\admin\controller;

use think\Config;
use think\Exception;
use think\Session;
use think\Db;
use app\admin\model\Crud;

class Download extends Permissions
{
    function download()
    {
        if (request()->isPjax()) {
            $search = '';
            $tj = '';
            if (Session::has('search')) {
                if (isset($_POST['search'])) {
                    if (input('search') === '') {
                        Session::set('search', null);
                    }
                    $search = input('search');
                    Session::set('search', $search);
                    $sentence = "(filename like '%$search%')";
                } else {
                    $search = Session::get('search');
                    $sentence = "(filename like '%$search%')";
                }
            } else {
                if (input('search') !== '') {
                    $search = input('search');
                    Session::set('search', $search);
                    $sentence = "(filename like '%$search%')";
                }
            }
//            开始时间,结束时间
            if (input('start_time') != null && input('end_time') != null) {
//                两个时间都不为空
                $s = strtotime(input('start_time') . ' 00:00:00');
                $e = strtotime(input('end_time') . ' 23:59:59');
                $tj['create_time'][] = array('egt', $s);
                $tj['create_time'][] = array('elt', $e);
            } else if (input('start_time') != null || input('end_time') != null) {
//                只选了一个时间点
                $s = input('start_time') != null ? strtotime(input('start_time') . ' 00:00:00') : '';
                $e = input('end_time') != null ? strtotime(input('end_time') . ' 23:59:59') : '';
                $tj['create_time'] = input('start_time') == null ? array('elt', $e) : array('egt', $s);
            }
            $num = input('num') ? input('num') : 10;
            $this->assign('num', $num);
            //        将选择的参数传递至 HTML
            $this->assign(['start' => input('start_time'), 'end' => input('end_time')]);//选择的合同签订时间段
            $this->assign('status', input('status'));
            $this->assign('low', input('low'));
            $this->assign('high', input('high'));
            $this->assign('search', $search);
            if (!empty($sentence)) {
                $download = Db::name('attachment')->where($tj)->where($sentence)->where('use', 'download_paper')->order('id', 'asc')->paginate($num);
                $test = Db::name('attachment')->where($tj)->where($sentence)->where('use', 'download_paper')->field('filepath,filename')->select();
            } else {
                $download = Db::name('attachment')->where($tj)->where('use', 'download_paper')->order('id', 'asc')->paginate($num);
                $test = Db::name('attachment')->where($tj)->where('use', 'download_paper')->field('filepath,filename')->select();
            }
            $page = $download->render();
            $this->assign(['download' => $download, 'page' => $page]);
            $this->assign(['test' => json_encode($test)]);
            $hetong = self::zip($test);
            $this->assign('hetong', $hetong);
            return $this->fetch();
        } else {
            Session::delete('search');
            $url = '';
            $url .= '?page=' . (input('page') ? input('page') : '');
            $url .= '&num=' . (input('num') ? input('num') : '');
            $url .= '&start_time=' . (input('start_time') ? input('start_time') : '');
            $url .= '&end_time=' . (input('end_time') ? input('end_time') : '');
            $this->assign('url', $url);
            return $this->fetch('page');
        }
    }

    function zip($test)
    {
        $current = getcwd();
        if (count($test) > 0) {
            foreach ($test as $k => $v) {
                $files = $current . $v['filepath'];
                $zip = new \ZipArchive;
                $zipName = '\uploads\admin\admin_thumb\\' . time() . '.zip';
                if ($zip->open($current .$zipName, \ZipArchive::CREATE) === TRUE) {
                    $zip->addFile($files, $v['filename']);
                }
            }
            $zip->close();
            return $zipName;
        }
        else{
            return 0;
        }
    }
}
?>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

瀞厅☆埖开 2022-09-18 23:37:11

new \ZipArchive;放在foreach外面啊

傲娇萝莉攻 2022-09-18 23:37:11

找到原因了。。。把pjax.js的默认超时时长延长就行了

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文