首頁  >  文章  >  php框架  >  thinkphp6不能用redirect重定向是什麼狀況?

thinkphp6不能用redirect重定向是什麼狀況?

藏色散人
藏色散人轉載
2021-11-11 14:09:292254瀏覽

下面thinkphp框架教學欄位會跟大家講介紹關於thinkphp6不能用redirect重定向的問題,希望對需要的朋友有幫助!

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(&#39;error&#39;);
        //return $this->success(&#39;success&#39;,&#39;index/index&#39;);
        //return $this->redirect(&#39;/admin/index/index&#39;);
        return $this->result([&#39;username&#39; => &#39;liliuwei&#39;, &#39;sex&#39; => &#39;男&#39;]);  
    }
}

推薦:《最新的10個thinkphp影片教學

#

以上是thinkphp6不能用redirect重定向是什麼狀況?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:juejin.im。如有侵權,請聯絡admin@php.cn刪除