Laravel JsonResource: array_merge_recursive(): Аргумент № 2 не является массивом
У меня есть 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 ответ
Я не хочу воспроизводить проблему с вашим кодом, но - вы уверены, что включили все? Глядя на https://laravel.com/docs/5.6/eloquent-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
Определен метод, который возвращает что-то еще, кроме массива.