在結果中為相同名稱的Laravel關係重新命名
P粉163951336
P粉163951336 2023-12-15 09:40:36
0
2
576

在這裡,你可以看到我有兩個 car_model 主表欄位和關係名稱:

AppModelsProduct {#1478 ▼
  #connection: "mysql"
  #table: "products"
  ...
  #escapeWhenCastingToString: false
  #attributes: array:21 [▼
    "id" => 1
    "company_id" => 1
    ...
    "car_model" => "test"
    ...
  ]
  #original: array:21 [▶]
  ...
  #relations: array:5 [▼
    "company" => AppModelsCompany {#1506 ▶}
    "car_model" => AppModelsCarModel {#1508 ▼
      #connection: "mysql"
      #table: "car_models"
      #attributes: array:6 [▼
        "id" => 1
        "title" => "test"
        "created_at" => ":07:25"
        "updated_at" => ":07:58"
      ]
      ...
      +mediaConversions: []
      +mediaCollections: []
      #deletePreservingMedia: false
      #unAttachedMediaLibraryItems: []
    }
    ...
}

當我嘗試取得 car_model 相關關係並同時擁有 car_model 時,我該如何取得關聯式資料?例如:

$products->first()->car_model->title

產品型號:

    public function car_model(): BelongsTo
    {
        return $this->belongsTo(CarModel::class);
    }

和我的查詢:

$this->products = Product::with(
    [
        'car_model',
    ]
)->get();

P粉163951336
P粉163951336

全部回覆(2)
P粉555682718

我建議您將關係重新命名為 car_models 或 car_model 之外的其他名稱:

public function car_models(): BelongsTo
    {
        return $this->belongsTo(CarModel::class);
    }

並且查詢可以更改為這樣

$this->products = Product::with(
    [
        'car_models',
    ]
)->get();

然後回傳

$products->first()->car_models->title
P粉145543872

我找到了解決方案。將 object 轉換為 array 後,我可以將 car_model 作為 relationship 存取:

$i=$products->first()->toArray();
echo $i['car_model']['title'];

echo ($products->first()->toArray())['car_model']['title']
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板