将两个 json 数组合并为一个

Merge two json array into one

尝试将两个 JSON 响应合并为一个响应,但问题是数据显示在两个数组中,而我希望它显示在一个数组中。我如何在 Lumen/Laravel

中实现它

尝试连接两个数组或响应

 public function index(Request $request)
    {
        $post = Post::orderBy('id', 'DESC')->get();
        $post_images = PostImage::orderBy('id', 'DESC')->get();
        return $this->successResponse($posts.$post_image );        
    }

预计:-

{
    "post": {
        "id": 14,
        "post_id": 798965728,
        "user_id": 1,
        "location": "first",
        "title": "un8852",
        "cooked_time": "1554329910",
        "dispose_time": "1554373110",
        "food_type": "nv",
        "description": "asdfg",
        "serve_quantity": 23,
        "lat": 19.08,
        "lon": 73,    
        "id": 10,
        "post_id": 798965728,
        "image_name1": null,
        "image_name2": null,
        "image_name3": null,
        "image_name4": null,
        "image_name5": null,
    },
    "st": "1",
    "msg": "success"
}

得到:-

{
   "post":"{\"id\":14,\"post_id\":798965728,\"user_id\":1,\"location\":\"first\",\"title\":\"un8852\",\"cooked_time\":\"1554329910\",\"dispose_time\":\"1554373110\",\"food_type\":\"nv\",\"description\":\"asdfg\",\"serve_quantity\":23,\"lat\":19.08,\"lon\":73,\"created_at\":\"2019-04-04 10:20:18\",\"updated_at\":\"2019-04-04 10:20:18\"}{\"id\":10,\"post_id\":798965728,\"image_name1\":null,\"image_name2\":null,\"image_name3\":null,\"image_name4\":null,\"image_name5\":null,\"created_at\":\"2019-04-04 10:20:18\",\"updated_at\":\"2019-04-04 10:20:18\"}",
   "st":"1",
   "msg":"success"
}

那里有一些遗漏的部分,但我想我明白发生了什么。

根据您得到的结果,这段代码中的 $posts$post_image 似乎是 eloquent 个模型。

return $this->successResponse($posts.$post_image ); 

当您连接它们时,它们的 __toString() 方法将它们转换为字符串,这是使用 toJson() 方法完成的。所以基本上你有两个 JSON 对象粘在一起,这是无效的 JSON,然后 successResponse() 方法再次对它们进行编码。

要合并它们,您可以将它们转换为数组,合并它们,然后将结果传递给 successResponse()

$merged = array_merge($posts->toArray(), $post_image->toArray());
return $this->successResponse($merged);

虽然你想要的结果是不可能的。 "post" 对象有两个不同的值 "id"。你只能得到一个。如果你使用

$merged = array_merge($posts->toArray(), $post_image->toArray());

那么第二个对象的id值将替换第一个。如果要保留第一个id值,需要使用union而不是array_merge.

$merged = $a->toArray() + $b->toArray(); 

我认为你不能将 2 个 JSON 对象连接成字符串。

正确的方法是:

  1. 获取 Post 和 PostImage 对象

    $post = Post::orderBy('id', 'DESC')->get();

    $post_images = PostImage::orderBy('id', 'DESC')->get();

  2. 序列化Post对象 https://laravel.com/docs/5.8/eloquent-serialization

  3. 使用下面描述的方法将PostImage对象的每个字段(image_name1 .. image_name5)添加到JSON How to add attribute in JSON in PHP?

  4. Return JSON

更新:

Post::orderBy('id','DESC')->get()-> first() returns一个对象。

Post::orderBy('id','DESC')->get() returns 对象的集合,它需要不同的方法。

试试这个:

$post = Post::orderBy('id', 'DESC')->get();

$post->map(function ($item, $key) {
    $post_images = PostImage::where('post_id', $item->id)->get()->first();
    $item->setAttribute('image_name1',$post_images->image_name1);
    $item->setAttribute('image_name2',$post_images->image_name2);
    $item->setAttribute('image_name3',$post_images->image_name3);
    $item->setAttribute('image_name4',$post_images->image_name4);
    $item->setAttribute('image_name5',$post_images->image_name5);
    return $item;
});

return $this->successResponse($posts);

你绝对可以连接两个 JSON 数组,你必须解析对象并连接它们并重新字符串化。

这个问题也可能在这里得到解答。