没有命名空间的类 yii yii\base yii\behaviors yii\caching yii\captcha yii\console yii\console\controllers yii\console\widgets yii\data yii\db yii\db\conditions yii\db\cubrid yii\db\cubrid\conditions yii\db\mssql yii\db\mssql\conditions yii\db\mysql yii\db\oci yii\db\oci\conditions yii\db\pgsql yii\db\sqlite yii\db\sqlite\conditions yii\di yii\filters yii\filters\auth yii\grid yii\helpers yii\i18n yii\log yii\mail yii\mutex yii\rbac yii\rest yii\test yii\validators yii\web yii\widgets

Class yii\base\ViewEvent

继承yii\base\ViewEvent » yii\base\Event » yii\base\BaseObject
实现yii\base\Configurable
可用版本自2.0
源码 https://github.com/yiichina/yii2/blob/api/framework/base/ViewEvent.php

ViewEvent 表示由 yii\base\View 组件触发的事件。

公共属性

隐藏继承的属性

属性类型描述被定义在
$data mixed The data that is passed to yii\base\Component::on() when attaching an event handler. yii\base\Event
$handled boolean Whether the event is handled. yii\base\Event
$isValid boolean 是否继续渲染视图文件。 yii\base\View::EVENT_BEFORE_RENDER 的事件处理程序可以设置此属性以决定是否继续渲染当前视图文件。 yii\base\ViewEvent
$name string The event name. yii\base\Event
$output string yii\base\View::renderFile() 的渲染结果。 事件处理程序可以修改此属性,修改后的输出将由 yii\base\View::renderFile() 返回。 此属性仅由 yii\base\View::EVENT_AFTER_RENDER 事件使用。 yii\base\ViewEvent
$params array 传递给 yii\base\View::render() 方法的参数数组。 yii\base\ViewEvent
$sender object The sender of this event. yii\base\Event
$viewFile string 正在渲染的视图文件。 yii\base\ViewEvent

公共方法

隐藏继承的方法

方法描述被定义在
__call() Calls the named method which is not a class method. yii\base\BaseObject
__construct() Constructor. yii\base\BaseObject
__get() Returns the value of an object property. yii\base\BaseObject
__isset() Checks if a property is set, i.e. defined and not null. yii\base\BaseObject
__set() Sets value of an object property. yii\base\BaseObject
__unset() Sets an object property to null. yii\base\BaseObject
canGetProperty() Returns a value indicating whether a property can be read. yii\base\BaseObject
canSetProperty() Returns a value indicating whether a property can be set. yii\base\BaseObject
className() Returns the fully qualified name of this class. yii\base\BaseObject
hasHandlers() Returns a value indicating whether there is any handler attached to the specified class-level event. yii\base\Event
hasMethod() Returns a value indicating whether a method is defined. yii\base\BaseObject
hasProperty() Returns a value indicating whether a property is defined. yii\base\BaseObject
init() Initializes the object. yii\base\BaseObject
off() 从类级事件中卸载事件处理程序。 yii\base\Event
offAll() 卸载所有已注册的类级事件处理程序。 yii\base\Event
on() Attaches an event handler to a class-level event. yii\base\Event
trigger() 触发类级事件。 This method will cause invocation of event handlers that are attached to the named event for the specified class and all its parent classes. yii\base\Event

属性详情

$isValid 公共 属性

是否继续渲染视图文件。 yii\base\View::EVENT_BEFORE_RENDER 的事件处理程序可以设置此属性以决定是否继续渲染当前视图文件。

public boolean $isValid true
$output 公共 属性

yii\base\View::renderFile() 的渲染结果。 事件处理程序可以修改此属性,修改后的输出将由 yii\base\View::renderFile() 返回。 此属性仅由 yii\base\View::EVENT_AFTER_RENDER 事件使用。

public string $output null
$params 公共 属性

传递给 yii\base\View::render() 方法的参数数组。

public array $params null
$viewFile 公共 属性

正在渲染的视图文件。

public string $viewFile null