博客列表 >那么如何通过观察者的形式来定义事件监听器呢

那么如何通过观察者的形式来定义事件监听器呢

php开发大牛
php开发大牛原创
2018年04月20日 14:37:00640浏览

public static function observe($class){
 $instance = new static;
 $className = is_string($class) ? $class : get_class($class);

 foreach ($instance->getObservableEvents() as $event) {
  if (method_exists($class, $event)) {
   static::registerModelEvent($event, $className.'@'.$event);
  }
 }
}

public function getObservableEvents()
{
 return array_merge(
  [
   'creating', 'created', 'updating', 'updated',
   'deleting', 'deleted', 'saving', 'saved',
   'restoring', 'restored',
  ],
  $this->observables
 );
}

先获取到observer的类名,然后判断是否存在事件名对应的方法,存在则调用registerModelEvent注册,这里事件名还包括我们自己定义在observables数组中的。

事件以及监听器都定义好后,就是如何触发了,前面说到有一个方法fireModelEvent,来看看源码:

protected function fireModelEvent($event, $halt = true)
{
 if (! isset(static::$dispatcher)) {
  return true;
 }

 $method = $halt ? 'until' : 'fire';

 $result = $this->filterModelEventResults(
  $this->fireCustomModelEvent($event, $method)
 );

 if ($result === false) {
  return false;
 }

 return ! empty($result) ? $result : static::$dispatcher->{$method}(
  "eloquent.{$event}: ".static::class, $this
 );
}

其中比较关键的一个方法是fireCustomModelEvent,它接受一个事件名以及触发方式。顺带一提,filterModelEventResults这个方法的作用就是把监听器的返回值为null的过滤掉。


声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议