获取不到 任何
heloo
heloo 2018-01-29 18:15:49
0
2
1344

网址:http://localhost/thinkphp/public/index/Be/demo1/name/think

——————————————————————————————

namespace app\index\controller;

class Be extends \think\Controller
{

   protected $beforeActionList = [
       //这里是前置方法
         'before1' => '',
       // 'before2'=>['only'=>'demo2'],
       //'before3'=>['except'=>'demo3,demo1'],
   ];

     protected $siteName;

   //这里写个前置方法
   protected function before1()
   {
       $this->siteName =$this->request->param('name');
   }

   protected function before2()
   {
       $this->siteName = '百度中文网2';
   }

   protected function before3()
   {
       $this->siteName = '网易3';
   }


   public function demo1()
   {
       return $this->siteName;
   }

   public function demo2()
   {
       return $this->siteName;
   }

   public function demo3()
   {
       return 'ss3';
   }

heloo
heloo

全部回复(1)
lge

你在是要从哪里获取方法的

  • 回复 url_param_type' => 0, 修改下好了
    heloo 作者 2018-01-30 09:45:00
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!