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

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

藏色散人
發布: 2021-11-11 14:09:29
轉載
2316 人瀏覽過

下面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
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板