qeq66 / think-jump
Installs: 1 040
Dependents: 0
Suggesters: 0
Security: 0
Stars: 10
Watchers: 0
Forks: 1
Open Issues: 0
Type:think-extend
Requires
- php: >=7.1.0
- topthink/framework: ^6.0
- topthink/think-view: ^1.0
This package is auto-updated.
Last update: 2025-03-11 19:56:52 UTC
README
基于thinkphp6的跳转扩展
安装
composer require qeq66/think-jump
用法示例
在所需控制器内引用该扩展:
<?php namespace app\controller; use app\BaseController; class Index extends BaseController { use \qeq66\think\Jump; public function index() { return $this->error('错误'); return $this->success('正确'); return $this->redirect('index/hello'); return $this->result(['username' => 'qeq66', 'content' => '输出json']); } }