Laravel JsonResource: array_merge_recursive (): Аргумент № 2 не является массивом - PullRequest
0 голосов
/ 27 августа 2018

У меня есть JsonResource из Post, который должен вернуть один пост. Но после объединения некоторых других данных я получаю эту ошибку: array_merge_recursive(): Argument #2 is not an array.

Это не работает :

/**
 * Display the specified resource.
 *
 * @param  int  $id
 * @return \Illuminate\Http\Response
 */
public function show($slug)
{
    // $post = Post::findOrFail($id);
    $post = Post::where('slug', $slug)->first();
    // return single post as resource
    return new PostResource($post);
}

Когда я прямо возвращаю $posts, я получаю json обратно, почти нормально. Но он не содержит объединенных данных comment.

Вот это class Post extends JsonResource.

public function toArray($request)
{
    // return parent::toArray($request);
    $img = '.'.pathinfo('storage/'.$this->image, PATHINFO_EXTENSION);
    $imgName = str_replace($img,'', $this->image);
    $img = $imgName.'-cropped'.$img;

    return [   
        'id' => $this->id,
        'title' => $this->title,
        'body' => $this->body,
        'excerpt' => $this->excerpt,
        'image' => asset('/storage/' . $this->image),
        'image_small' => asset('storage/' . $img),
        'author_id' => $this->author_id,
        'category_id' => $this->category_id,
        'seo_title' => $this->seo_title,
        'slug' => $this->slug,
        'meta_description' => $this->meta_description,
        'meta_keywords' => $this->meta_keywords,
        'status' => $this->status,
        'featured' => $this->featured,
        'created_at' => $this->created_at,
        'updated_at' => $this->updated_at,
        'user' => User::find($this->author_id),
        'commentCount' => $this->comment->where(['status' => 1, 'id_post' => $this->id])->count(),
    ];
}

// **Big mistake below here**:
public function with($request)
{
    // return [
    //     'version' => '1.0.0',
    // ];
}

Модель:

class Post extends Model
{
    public $primary_key = 'id';
    public $foreign_key = 'id_post';

    public function user()
    {
        return $this->belongsTo('App\User', 'id_author', 'id');
    }

    public function comment()
    {
        return $this->belongsTo('App\Comment', 'id', 'id_post');
    }
}

Почему я получаю предупреждение о array_merge_recursive ()?

1 Ответ

0 голосов
/ 27 августа 2018

Я не хочу воспроизводить проблему с вашим кодом, но - вы уверены, что включили все? Глядя на https://laravel.com/docs/5.6/eloquent-resources#writing-resources, можно определить, что дополнительные данные будут возвращаться так:

/**
 * Get additional data that should be returned with the resource array.
 *
 * @param \Illuminate\Http\Request  $request
 * @return array
 */
public function with($request)
{
    return [
        'meta' => [
            'key' => 'value',
        ],
    ];
}

Таким образом, я смог воспроизвести проблему, добавив в этот класс ресурсов Post следующий метод:

public function with($request)
{
    return 'test';
}

как вы видите, он возвращает только строку, а не массив, и затем я получаю ту же ошибку, что и вы.

Но когда у меня вообще не было этого метода или когда я возвращал только массив, все нормально.

Итак, подведем итог - убедитесь, что у вас не определен метод with, который возвращает что-то еще, кроме массива.

...