다음 thinkphp 프레임워크 튜토리얼 칼럼에서는 thinkphp6이 리디렉션을 사용할 수 없는 문제에 대해 설명하겠습니다. 도움이 필요한 친구들에게 도움이 되길 바랍니다!
TP6은 __construct
和_initialize
에서 리디렉션을 사용할 수 없나요?
설명
현재 버전의 return 리디렉션('index/index')은 __construct 및 _initialize에서 사용할 수 없습니다. 이전 코드를 설치하면 쉽게 사용할 수 있습니다
Installation
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은 왜 리디렉션을 사용할 수 없나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!