1

Laravel 4 では、ManyToMany 関係に Eager Loading を使用します。

public function categories()
{

    return $this->belongsToMany('Category');

}

次のようなカテゴリを返します。

    "categories": [
        {
            "id": 1,
            "priority": 1,
            "title": "My category 1",
            "created_at": "2013-08-10 18:45:08",
            "updated_at": "2013-08-10 18:45:08"
        },
        {
            "id": 2,
            "priority": 2,
            "title": "My category 2",
            "created_at": "2013-08-10 18:45:08",
            "updated_at": "2013-08-10 18:45:08"
        }
    ],

しかし、私が必要とするのはこれだけです:

    "categories": [1,2] // References category id's only

Query Builder には、このトリックを実行する「リスト」と呼ばれるメソッドがあります。しかし、イーガーロードの場合は機能しませんか???

public function categories()
{

    return $this->belongsToMany('Category')->lists('category_id');

}
4

3 に答える 3

1

Model/BaseModel に次のコードを追加します。

/**
 * Set additional attributes as hidden on the current Model
 *
 * @return instanceof Model
 */
public function addHidden($attribute)
{
    $hidden = $this->getHidden();

    array_push($hidden, $attribute);

    $this->setHidden($hidden);

    // Make method chainable
    return $this;
}

/**
 * Convert appended collections into a list of attributes
 *
 * @param  object       $data       Model OR Collection
 * @param  string|array $levels     Levels to iterate over
 * @param  string       $attribute  The attribute we want to get listified
 * @param  boolean      $hideOrigin Hide the original relationship data from the result set
 * @return Model
 */
public function listAttributes($data, $levels, $attribute = 'id', $hideOrigin = true)
{

    // Set some defaults on first call of this function (because this function is recursive)
    if (! is_array($levels))
        $levels = explode('.', $levels);

    if ($data instanceof Illuminate\Database\Eloquent\Collection) // Collection of Model objects
    {
        // We are dealing with an array here, so iterate over its contents and use recursion to look deeper:
        foreach ($data as $row)
        {
            $this->listAttributes($row, $levels, $attribute, $hideOrigin);
        }
    }
    else
    {
        // Fetch the name of the current level we are looking at
        $curLevel = array_shift($levels);

        if (is_object($data->{$curLevel}))
        {
            if (! empty($levels))
            {
                // We are traversing the right section, but are not at the level of the list yet... Let's use recursion to look deeper:
                $this->listAttributes($data->{$curLevel}, $levels, $attribute, $hideOrigin);
            }
            else
            {
                // Hide the appended collection itself from the result set, if the user didn't request it
                if ($hideOrigin)
                    $data->addHidden($curLevel);

                // Convert Collection to Eloquent lists()
                if (is_array($attribute)) // Use specific attributes as key and value
                    $data->{$curLevel . '_' . $attribute[0]} = $data->{$curLevel}->lists($attribute[0], $attribute[1]);
                else // Use specific attribute as value (= numeric keys)
                    $data->{$curLevel . '_' . $attribute} = $data->{$curLevel}->lists($attribute);
            }
        }
    }

    return $data;
}

次のように、モデル/コレクション オブジェクトで使用できます。

// Fetch posts data
$data = Post::with('tags')->get(); // or use ->first()

// Convert relationship data to list of id's
$data->listAttributes($data, 'tags');

$data には、次のオブジェクト ストアが含まれます。

{
    "posts": [
        {
            "title": "Laravel is awesome",
            "body": "Lorem Ipsum...",
            "tags_id": [ 1, 2, 3 ]
        },
        {
            "title": "Did I mention how awesome Laravel is?",
            "body": "Lorem Ipsum...",
            "tags_id": [ 1, 2, 4 ]
        }
    ]
}

また、ネストされた関係もサポートしています。

// Fetch posts data
$data = Post::with('comments', 'comments.tags')->get(); // or use ->first()

// Convert relationship data to list of id's
$data->listAttributes($data, 'comments.tags');
于 2013-12-03T11:02:26.797 に答える
0

モデル化するすべてのリクエストがこれに該当する場合は、categoryvisible array

お気に入りprotected $visible = array('category_id');

これで、カテゴリ モデルへのすべてのリクエストで取得category_idのみが行われます

あなたの場合-

Class Category extends Eloquent{

    protected $visible=array('category_id');
    ...
}

注-のコレクションをcategory_idオブジェクトとして返しますが、配列が必要な場合はtoArray()、クエリビルダーのメソッドを使用して配列を取得する必要がありますcategory_id

必要なものを正確に取得するには、これを試すことができます

$cat_id=Category::all()->toArray();
$arrid=array();
array_walk_recursive($cat_id,function($value,$key) use (&$arrid){
  array_push($arrid,$value);
})
//$arrid will contain only category_id's like
//$arrid=[1,2,3];
于 2013-08-11T07:43:02.377 に答える