下面thinkphp框架教學欄位會跟大家講介紹關於thinkphp6不能用redirect重定向的問題,希望對需要的朋友有幫助!
TP6在__construct
和_initialize
中無法使用redirect重定向?
說明
目前版本return redirect('index/index'); 在__construct和_initialize無法使用,可以安裝先前的程式碼方便使用
安裝
composer require liliuwei/thinkphp-jump
用法範例
<?php namespace 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' => '男']); } }
#推薦:《最新的10個thinkphp影片教學》
以上是thinkphp6不能用redirect重定向是什麼狀況?的詳細內容。更多資訊請關注PHP中文網其他相關文章!