我用Gii创建了一个控制器GreetingController,如下所示:
<?php
namespace app\controllers;
class GreetingController extends \yii\web\Controller
{
public $message = 'Message variable from Controller';
public $message2 = 'Message2 variable from Controller2';
public function actionIndex()
{
return $this->render('index',array('content'=>$this->message));
}
}
使用此代码列表查看:
<?php
/* @var $this yii\web\View */
use app\controllers;
use yii\web\Controller;
echo $content;
echo $this->message2;
?>
<h1>greeting/index</h1>
<p>
You may change the content of this page by modifying
the file <code><?= __FILE__; ?></code>.
</p>
我在这里尝试的是从控制器类访问变量。我在线上收到了未知属性错误:
echo $this->message2;
如果我删除了这一行,它将成功显示$ content变量的值。因为在我上面提到的视图教程中,有两种方法可以将数据从控制器传递到视图,如果我们在数组中传递变量,第一种方法工作正常。但是当我尝试直接从视图访问公共变量时,我收到此错误。任何人都可以建议我做错了吗?
答案 0 :(得分:1)
如果要直接访问公共变量,则必须使用对象上下文变量。
ipython
所以在你的情况下:
$this->context->yourVariable