使用数组的Laravel 5.5 API资源集合

时间:2018-02-19 06:40:19

标签: php api laravel-5.5

我正在使用laravel 5.5 API资源集合来显示产品列表。我使用的是数组而不是模态对象。我得到了我的项目列表,但我不知道如何在响应中显示项目变量数组。传递给api资源的实际响应数组是:

{
"ID": 3160,
"UserID": 3302,
"ItemName": "2",
"Description": "2",
"Price": 2,
"StockLimited": true,
"StockQuantity": 19,
"CurrencyCode": "USD",
"ImageUrl": "/images/items/Item3302-636434761494584365-qq5HFm.png",
"VariantItems": [
  {
    "ID": 3181,
    "ItemName": "2",
    "Price": 0,
    "StockLimited": false,
    "StockQuantity": 0,
    "CurrencyCode": "USD",
    "Variants": [
      {
        "Id": 1099,
        "Name": "Red",
        "VariantGroupId": 1027,
        "VariantGroupName": "Colour"
      },
      {
        "Id": 1111,
        "Name": "S",
        "VariantGroupId": 1028,
        "VariantGroupName": "Size"
      }
    ]
  },
  {
    "ID": 3182,
    "ItemName": "2",
    "Price": 0,
    "StockLimited": false,
    "StockQuantity": 0,
    "CurrencyCode": "USD",
    "Variants": [
      {
        "Id": 1099,
        "Name": "Red",
        "VariantGroupId": 1027,
        "VariantGroupName": "Colour"
      },
      {
        "Id": 1112,
        "Name": "M",
        "VariantGroupId": 1028,
        "VariantGroupName": "Size"
      }
    ]
  }

],
"MerchantName": "seller",
"VariantGroupLists": [
  {
    "VariantGroupName": "Colour",
    "Names": [
      "Red",
      "Grey",
      "Navy"
    ]
  },
  {
    "VariantGroupName": "Size",
    "Names": [
      "S",
      "M",
      "L",
      "XL"
    ]
  }
]  
}

我的ItemResourceCollection

public function toArray($request)
{


    return [
        'data' => $this->collection->map(function ($item) use ($request) {
            return (new ItemResource($item))->toArray($request);
        })
    ];
}

我的ItemResource

 public function toArray($request)
{

    return [
        "item_id" => $this->resource->ID,
        "item_name" => $this->resource->ItemName,
        "description" =>$this->resource->Description,
        "item_price"=>$this->resource->Price,
        "stock_qty"=>$this->resource->StockQuantity,
        "currency_code"=>$this->resource->CurrencyCode,
        "item_image_url"=>$this->resource->ImageUrl,

    ];

}

public function with($request)
{

    return ['item_varients' => [new ItemResource($this->resource->VariantItems)]]; 
}

我想要实现的是这个结果:

[

{
    "item_id": 3160,
    "item_name": "BLACK COWL NECK DRESS WITH DIAMANTE DETAIL",
    "description": "Test test",
    "item_price": 16.99,
    "stock_qty": 20,
    "currency_code": "SGD",
    "item_image_url": "/images/items/Item18-636231488325192562-GoiIBl.png",
    "item_varients": [
      {
        "id": 29,
        "name": "Red",
        "varientgroupId": 11,
        "varientgroupname": "Color"
      }
    ]
  }
]

ItemResource中的with()方法无法正常工作。如何在资源响应中添加"item_varients"数组?

1 个答案:

答案 0 :(得分:2)

我首先会移动该行,在方法item_varients中添加toArray属性,如下所示:

public function toArray($request)
{
    return [
        "item_id" => $this->resource->ID,
        "item_name" => $this->resource->ItemName,
        "description" => $this->resource->Description,
        "item_price" => $this->resource->Price,
        "stock_qty" => $this->resource->StockQuantity,
        "currency_code" => $this->resource->CurrencyCode,
        "item_image_url" => $this->resource->ImageUrl,
        "item_varients" => [
            new ItemResource($this->resource->VariantItems)
        ]
    ]
}

元信息

我们这样做是因为with用于添加元信息块或类似的东西。见https://laravel.com/docs/5.5/eloquent-resources#adding-meta-data 使用with方法的优点是,多个资源只会产生一个meta块。我想这不是你想要的。

VariantItem

的资源

我认为你还必须为Resource建立一个VariantItem课程。由于VariantItem是一个集合,因此您还需要填充名为item_variants的数组,类似于ItemResourceCollection。因此,将代码更改为:

public function toArray($request)
{
    /**
     * Prepare your variant items to have a collection
     *
     * @var Collection $variantItems
     */
    $variantItems = collect($this->resource->VariantItems);

    return [
        "item_id" => $this->resource->ID,
        "item_name" => $this->resource->ItemName,
        "description" => $this->resource->Description,
        "item_price" => $this->resource->Price,
        "stock_qty" > $this->resource->StockQuantity,
        "currency_code" => $this->resource->CurrencyCode,
        "item_image_url" => $this->resource->ImageUrl,
        "item_varients" => VariantItem::collection($variantItems)
    ]
}