Copyright © 2022-2024 aizws.net · 网站版本: v1.2.6·内部版本: v1.23.3·
页面加载耗时 0.00 毫秒·物理内存 63.6MB ·虚拟内存 1299.8MB
欢迎来到 AI 中文社区(简称 AI 中文社),这里是学习交流 AI 人工智能技术的中文社区。 为了更好的体验,本站推荐使用 Chrome 浏览器。
您可以使用 事件 在某些执行点注入自定义代码。您可以将自定义代码附加到事件,并且当事件被触发时,代码被执行。例如,当新用户在您的网站上注册时,记录器对象可能会触发 userRegistered 事件。如果一个类需要触发事件,你应该从yii \ base \ Component类扩展它。
事件处理程序是一个PHP回调。您可以使用以下回调 -
步骤1 - 要将处理程序附加到事件,您应该调用 yii \ base \ Component :: on() 方法。
$obj = new Obj; // this handler is a global function $obj->on(Obj::EVENT_HELLO, 'function_name'); // this handler is an object method $obj->on(Obj::EVENT_HELLO, [$object, 'methodName']); // this handler is a static class method $obj->on(Obj::EVENT_HELLO, ['app\components\MyComponent', 'methodName']); // this handler is an anonymous function $obj->on(Obj::EVENT_HELLO, function ($event) { // event handling logic });
您可以附加一个或多个处理程序到事件。附加的处理程序按照它们附加到事件的顺序调用。
第2步 - 要停止调用处理程序,应该将 yii \ base \ Event :: $ handled属性设置 为 true 。
$obj->on(Obj::EVENT_HELLO, function ($event) { $event->handled = true; });
第3步 - 要在队列的起始处插入处理程序,可以调用 yii \ base \ Component :: on() ,为第四个参数传递false。
$obj->on(Obj::EVENT_HELLO, function ($event) { // ... }, $data, false);
第4步 - 要触发事件,请调用 yii \ base \ Component :: trigger() 方法。
namespace app\components; use yii\base\Component; use yii\base\Event; class Obj extends Component { const EVENT_HELLO = 'hello'; public function triggerEvent() { $this->trigger(self::EVENT_HELLO); } }
第5步 - 要从事件中分离处理程序,应该调用 yii \ base \ Component :: off() 方法。
$obj = new Obj; // this handler is a global function $obj->off(Obj::EVENT_HELLO, 'function_name'); // this handler is an object method $obj->off(Obj::EVENT_HELLO, [$object, 'methodName']); // this handler is a static class method $obj->off(Obj::EVENT_HELLO, ['app\components\MyComponent', 'methodName']); // this handler is an anonymous function $obj->off(Obj::EVENT_HELLO, function ($event) { // event handling logic });
在本章中,我们将看到在Yii中创建一个事件。为了显示活动中的事件,我们需要数据。 准备数据库第1步 - 创建一个新的数据库。 数据库可以通过以下两种方式进行准备。在终端中运行 mysql -u root -p通过 ...