Triats
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | namespace app\index\controller; // 引入Traits类(PHP5.5以上版本可以不需要) T( 'controller/View' ); T( 'controller/Jump' ); class Index { use \traits\controller\View; use \traits\controller\Jump; public function index(){ if (!IS_AJAX){ $this ->error( '非法操作' ); } else { $this ->assign( 'name' , 'thinkphp' ); return $this ->fetch( 'hello' ); } } } |