先說思路根據order_goods裡的goodsiD找到goods表裡的shop_id 然後根據shop_id在shop表裡找name 其中order_goods表與shop表沒有關聯
我模仿TP5裡的寫
public function shop( )
{
return $this->hasManyThrough('Shop','Goods','goods_id','shop_id','id')->setEagerlyType(0);#}# #hasManyThrough('關聯模型名','中間模型名','外鍵名','中間模型關聯鍵名','當前模型主鍵名',['模型別名定義']);
就是後面的參數不知道一個寫那個大神們能幫忙指教嗎
請開啟trace,將產生的SQL語句,貼出來