这篇文章主要介绍“thinkphp6为什么不能用redirect重定向”,在日常操作中,相信很多人在thinkphp6为什么不能用redirect重定向问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”thinkphp6为什么不能用redirect重定向”的疑惑有所帮助!接下来,请跟着小编一起来学习吧!
TP6在__construct
和_initialize
中无法使用redirect重定向?
说明
目前版本 return redirect('index/index'); 在__construct和_initialize无法使用,可以安装之前的代码方便使用
安装
composer require liliuwei/thinkphp-jump
用法示例
<?phpnamespace app\controller;class Index { use \liliuwei\think\Jump; public function index() { //return $this->error('error'); //return $this->success('success','index/index'); //return $this->redirect('/admin/index/index'); return $this->result(['username' => 'liliuwei', 'sex' => '男']); }}
到此,关于“thinkphp6为什么不能用redirect重定向”的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注编程网网站,小编会继续努力为大家带来更多实用的文章!