登录  /  注册
获取不到 任何
heloo
heloo 2018-01-29 18:15:49
[PHP讨论组]

网址: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)
韦小宝

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

  • 回复 url_param_type' => 0, 修改下好了
    heloo 作者 2018-01-30 09:45:00
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

Copyright 2014-2024 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号