yii2_actions() 函数用法

1在frontend/libs新建TestAction.php

<?php
namespace frontend\libs;
use yii\base\Action;
class TestAction extends Action {
    public $param1=NULL;
    public $param2=NULL;
    public function run($get=NULL) {
        return $this->controller->render('test',[
            'get'=>$get,
            'param1'=>$this->param1,
            'param2'=>$this->param2
        ]);
    }
}

2在SiteController里调用testAction:

  public function actions()
    {
        return [
            'error' => [
                'class' => 'yii\web\ErrorAction',
            ],
            'captcha' => [
                'class' => 'yii\captcha\CaptchaAction',
                'fixedVerifyCode' => YII_ENV_TEST ? 'testme' : null,
            ],
            'test'=>[
                'class'=>'frontend\libs\TestAction',
                'param1'=>'参数一',
                'param2'=>'参数二',
            ]
        ];
    }

3配置视图views/site/test.php完成测试:

<h1>TestAction</h1>
<p>这是TestAction演示页面!</p>
<p>$get="<?=$get?>"</p>
<p>$param1="<?=$param1?>"</p>
<p>$param2="<?=$param2?>"</p>

http://127.0.0.8/index.php?r=site%2Ftest&get=xxx

 

$get、$param1、$param2,其中$get是在url中传递的,例如按照我电脑上的配置,访问http://127.0.0.8/index.php?r=site%2Ftest&get=xxx,就会为$get赋值xxx。而$param1和$param2则是在controller中设置的。

posted on 2017-01-29 12:04 木子炜培先生 阅读( ...) 评论( ...) 编辑 收藏

转载于:https://www.cnblogs.com/liadmin/p/6357412.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值