簡體   English   中英

Laravel 5.5 API資源收集使用數組

[英]Laravel 5.5 API Resource Collection using array

我正在使用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"數組?

我首先將移動該行以在方法toArray內添加item_varients屬性,如下所示:

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資源

我認為您還必須為VariantItem建立一個Resource類。 並且由於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)
    ]
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM