36

我正在与我合作的项目中使用数据透视表来获取用户的作品。

例如:User::find(1)->works给我 ID 为 1 的用户的作品。

问题是我想用额外的 Pivot 数据过滤这个结果。

就像是:

User::find(1)->works->pivot->where('active',1)->get();

其中 active 是我在 user_works 数据透视表中设置的列。

这是我的 User.php 模型的相关部分:

<?php

class User extends Cartalyst\Sentry\Users\Eloquent\User {

    public function works() {
        return $this->belongsToMany('Work','user_works')->withPivot('active')->withTimestamps();
    }

}

这是我的 Work.php 模型的相关部分:

<?php

class Work extends Eloquent {

    public function users() {
        return $this->belongsToMany('User','user_works')->withPivot('active')->withTimestamps();
    }
}

这是我的数据透视表架构:

<?php

use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;

class CreateUserWorksTable extends Migration {

    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('user_works', function(Blueprint $table) {
            $table->increments('id');

            $table->integer('user_id')->unsigned()->default(0);
            $table->integer('work_id')->unsigned()->default(0);

            $table->enum('active',array('0','1'))->default(1);

            $table->foreign('user_id')->references('id')->on('users')->onDelete('cascade');
            $table->foreign('work_id')->references('id')->on('works')->onDelete('cascade');

            $table->timestamps();
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::drop('user_works');
    }

}

有没有办法在不为数据透视表创建新模型的情况下获取数据?

提前致谢,

编辑: 我可以这样过滤:

return User::find(1)->works()->where('user_works.active','=','1')->get();

我必须输入原始表名。但是有没有更好的方法来获得它而不使用它?

4

3 回答 3

50

Laravel 4.1 带来了 nativewherePivotorWherePivot methods,直接解决了我的问题。

于 2013-12-12T22:33:25.697 回答
5

我尝试在两个方向上设置所有关系,因为这允许使用动态属性,例如$user->works().

class Collection extends Eloquent {
    public function contents()
    {
        return $this->belongsToMany('Content', 'collection_content', 'collection_id', 'content_id')->withPivot('collection_id', 'group_id', 'field_identifier');
    }
}

class Content extends Eloquent {
    public function collections()
    {
        return $this->belongsToMany('Collection', 'collection_content', 'collection_id', 'content_id')->withPivot('collection_id', 'group_id', 'field_identifier');
    }
}

class CollectionContent extends Eloquent {
    public function content()
    {
        return $this->belongsTo('Content');
    }

    public function collection()
    {
        return $this->belongsTo('Collection');
    }
}

然后查询:

$works = User::find(1)->works()->where('active', 1)->get();

在使用数据透视表时,Eloquent 的文档非常糟糕。这是一个很棒的教程: http: //www.develop.be/2013/08/30/laravel-4-pivot-table-example-attach-and-detach/

于 2014-05-02T12:25:37.553 回答
4

每当你打电话withPivot('foo')时,Laravel 你都会:

SELECT ... `table`.`foo` AS `pivot_foo` FROM `table` ...

固定答案:

HAVINGMySQL 特别允许在,GROUP BY和子句上使用列别名ORDER BY,但不能在WHERE子句上使用。

两者HAVINGWHERE都用于过滤查询,但它们的行为略有不同:HAVING应用于之后GROUP BYWHERE之前。

作为一般 SQL 规则,您不应使用列别名(pivot_foo在这种情况下)进行分组、过滤或类似操作,因为它可能不适用于其他 SQL 数据库。

虽然不推荐,但可以使用:

return User::find(1)->works()->having('pivot_active','=','1')->get();
于 2013-08-31T13:24:44.607 回答