1. 점프 템플릿 파일 준비
이전 ThinkPHP 프레임워크에서 점프 템플릿 파일을 복사하세요
위치는 이전 프레임워크 코어 파일/thinkphp/tpl/dispatch_jump.tpl
예를 들어 /public에 넣으세요. / tpl/dispatch_jump.tpl
2. 구성 파일을 수정합니다
위치는 /config/app.php입니다. 다음과 같이 구성 파일에 다음 두 줄의 코드를 추가합니다.
// 해당 템플릿 파일 기본 점프 페이지 [New 】
'dispatch_success_tmpl' => app()->getRootPath() '/public/tpl/dispatch_jump.tpl',
'dispatch_error_tmpl' => app()->getRootPath( ) .'/public/tpl/dispatch_jump.tpl',
——————————————
3. 위치는 /app/BaseController.php에 있습니다.
(1) 상단에 다음 2줄의 코드를 추가하면 가져온 파일은 다음과 같습니다.
//
// 다음 2줄은 이전 버전의 성공 오류 리디렉션//으로 이동하는 데 사용됩니다.
use thinkExceptionHttpResponseException;
use thinkfacadeRequest;
———— ————————————
2) 다음으로 이 기본 컨트롤러 클래스 파일을 수정하고 다음 코드를 직접 추가합니다. “
//
// 以下为新增,为了使사용旧版적 성공 오류 리디렉션 跳转 start
//
/**
* 점프 성공 단축키 방법
* @access protected
* @param mix $msg 프롬프트 메시지
* @param string $url 점프 URL 주소
* @param mix $data 반환 데이터
* @param 정수 $wait 점프 대기 시간
* @param array $header 헤더 정보가 전송되었습니다
* @return void
*/
보호 함수 성공($msg = '', string $url = null , $data = '', int $wait = 3, 배열 $header = [])
{
if (is_null($url) && isset($_SERVER["HTTP_REFERER"])) {
$url = $_SERVER[ "HTTP_REFERER"];
} elseif ($url) {
$url = (strpos($url, '://') || 0 === strpos($url, '/')) ? $url : app('route')->buildUrl($url);
}
$result = [
'code' => 1,
'메시지' => $msg,
'데이터' => $data,
'url' => $url,
'기다려' => $wait,
];
$type = $this->getResponseType();
if ($type == 'html'){
$response = view($this->app->config-> ;get('app.dispatch_success_tmpl'), $result);
} else if ($type == 'json') {
$response = json($result);
}
새 HttpResponseException($response);
던지기 }
/**
* 오류 점프 단축키
* @access protected
* @param mix $msg 프롬프트 메시지
* @param string $url 점프 URL 주소
* @param mix $data 반환 데이터
* @param 정수 $wait 점프 대기 시간
* @param array $header 헤더 정보가 전송되었습니다
* @return void
*/
보호된 함수 오류($msg = '', string $url = null, $data = '', int $wait = 3, array $header = [])
{
if (is_null($url)) {
$url = $this->request->isAjax() ? '' : 'javascript:history.back(-1);';
} elseif ($url) {
$url = (strpos($url, '://') || 0 === strpos($url , '/')) ? $url : $this->app->route->buildUrl($url);
}
$result = [
'코드' => 0,
'메시지' => $msg,
'데이터' => $data,
'url' => $url,
'기다려' => $wait,
];
$type = $this->getResponseType();
if ($type == 'html'){
$response = view($this->app->config-> ;get('app.dispatch_error_tmpl'), $result);
} else if ($type == 'json') {
$response = json($result);
}
새 HttpResponseException($response)을 발생시킵니다.
}
/**
* URL 리디렉션 내장된 리디렉션이 유효하지 않습니다
* @access protected
* @param string $url 점프 URL 표현
* @param array|integer $params 기타 URL 매개변수
* @param 정수 $code http code
* @ param 배열 $암시적 매개변수 전달
* @return void
*/
보호된 함수 리디렉션($url, $params = [], $code = 302, $with = [])
{
$response = Response::create($url, '리디렉션');
if (is_integer($params)) {
$code = $params;
$params = [];
}
$response->code($code)->params($ params)->with($with);
새 HttpResponseException($response);
}
/**
* 현재 응답 출력 유형 가져오기
* @access protected
* @return string
*/
protected 함수 getResponseType()
{
return $this->request- >isJson() || $this->요청->isAjax() ? 'json': 'html';
}
//
// 以上为新增,为了使用旧版的 성공 오류 리디렉션 跳转 end
//
3초 후 리디렉션 프롬프트를 사용하여 코드 프롬프트로 점프하는 경우는 다음과 같습니다
//인증 실패 처리
->성공($p, url('/admin/index/Add_order_list/')) ; //정보를 리디렉션하고 안내합니다
위 내용은 thinkphp6 리디렉션 팁의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!