如何从laravel中的自定义方法获取当前模型

时间:2015-08-13 12:14:22

标签: php laravel laravel-5 eloquent models

我不确定我是否正确地提出问题,但这正是我想要做的。

所以我们可以从

获得电流

$model = Model::find($id)

然后我们可以得到它的关系:

$model->relationships()->id

然后我们会采取以下行动:

$model->relationships()->detach(4);

我的问题是,我们可以使用自定义方法:

$model->relationships()->customMethod($params);

在模型中它可能看起来像:

   public function customMethod($params){
         //Do something with relationship id
   }

但更重要的是,customMethod如何获得像$models这样的信息?

对不起,如果这可能有点令人困惑。

1 个答案:

答案 0 :(得分:2)

首先,如果要访问相关对象,可以通过访问与关系同名的属性来执行此操作。在您的情况下,为了从关系访问对象,您需要通过以下方式执行此操作:

$model->relationships //returns related object or collection of objects

而不是

$model->relationships() //returns relation definition

其次,如果要访问相关对象的属性,可以采用相同的方式:

$relatedObjectName = $model->relationship->name; // this works if you have a single object on the other end of relations

最后,如果要在相关模型上调用方法,则需要在相关模型类中实现此方法。

class A extends Eloquent {
  public function b() {
    return $this->belongsTo('Some\Namespace\B');
  }

  public function cs() {
    return $this->hasMany('Some\Namespace\C');
  }
}

class B extends Eloquent {
  public function printId() {
    echo $this->id;
  }
}

class C extends Eloquent {
  public function printId() {
    echo $this->id;
  }
}

$a = A::find(5);
$a->b->printId(); //call method on related object
foreach ($a->cs as $c) { //iterate the collection
  $c->printId(); //call method on related object
}

您可以在此处详细了解如何定义和使用关系:http://laravel.com/docs/5.1/eloquent-relationships