美文网首页
ThinkPHP6.0 问题整理

ThinkPHP6.0 问题整理

作者: 皮蛋馅儿 | 来源:发表于2020-04-05 15:05 被阅读0次

1、Driver [Think] not supported.
报错场景:

<?php

namespace app\admin\controller;

use app\BaseController;
use think\facade\View;

class Index extends BaseController
{
    public function index()
    {
        return View::fetch();
    }
}

解决:

composer require topthink/think-view

2、BaseController无法跳转问题,可通过以下方法解决

<?php

namespace app\admin\controller;

use app\BaseController;
use think\exception\HttpResponseException;

class Base extends BaseController
{
    public function initialize()
    {
        parent::initialize();
        if ('条件成立') {
            return $this->redirect(url('index/index'), 302);
        }
    }

    /** 重定向
     * @param array ...$args
     */
    public function redirect(...$args)
    {
        throw new HttpResponseException(redirect(...$args));
    }
}

加我微信公众号:\color{red}{皮蛋馅儿},定期更新文章,一起学习哦~

相关文章

  • ThinkPHP6.0 问题整理

    1、Driver [Think] not supported.报错场景: 解决: 2、BaseController...

  • thinkphp开发手册(完整本)笔记

    待更新 参考手册[ThinkPHP6.0完全开发手册 官方] (https://www.kancloud.cn/...

  • php-小程序系统部署

    开发工具:phpStorm语言:php开发框架:thinkphp6.0服务器:CentOS 7.0以上,php 7...

  • ThinkPHP6.0使用自定义分页类 重写paginate页码

    ThinkPHP6.0给我们预定义了paginate分页类,帮助我们快速分页,但是ThinkPHP6提供的分页的样...

  • 问题整理

    说明:需要回顾或者处理的问题记录 1、SVN:获取项目失败,访问被禁止。-没有写完整的地址 http://xxx....

  • 问题整理

    案例1.我的孩子每天早上不愿意起床,起床了也不愿意刷牙洗脸,就想要玩玩具,该怎么办? 案例2.双胞胎的妹妹特别的怕...

  • 问题整理

    1、代理的效率高,还是KVO的效率高? 代理的效率高,因为代理不会动态的生成类 2、怎么拿到一个对象的类对象,怎么...

  • 问题整理

    1. 请求数据失败后页面就一直报错,需强刷才能继续进行下去 解决方案: try catch 2.在中chrome中...

  • 整理问题

    分清主次 整理思路

  • 问题整理

    怎样保证接口幂等性 @transational 有没有遇到失效的场景

网友评论

      本文标题:ThinkPHP6.0 问题整理

      本文链接:https://www.haomeiwen.com/subject/vmsjphtx.html