我有一个布料表,链接到一个品牌和一个季节。运行App\fabrics::with('brand', 'season')->get()
可以获得所有面料及其品牌和季节信息,这很好(见下文)。
我想根据季节ID获得面料。我试过了:
App\fabrics::with('brand', 'season')->where('season.id', '1')->get()
但这不起作用。
Column not found: 1054 Unknown column 'season.id' in 'where clause' (SQL: select * from `fabrics` where `season`.`id` = 1)'
是否可以通过其中一种关系来获取面料和过滤器?
显然我可以从季节模型App :: season获得面料,但我想知道它是否可以从其母(面料)模型中实现。
App \ fabrics :: with('brand','season') - > get()
的所有信息>>> App\fabrics::with('brand', 'season')->get()
=> Illuminate\Database\Eloquent\Collection {#794
all: [
App\Fabrics {#786
id: 1,
fabric_code: "GMAN01",
fabric_design: "ANODA",
fabric_price_group: "I",
fabric_retail_price: "27.00",
fabric_trade_price: null,
fabric_width: 141,
fabric_pattern_repeat: 1,
fabric_fiber: "48% POLYESTER 44% COTTON 8% VISCOSE",
fabric_online: 1,
fabric_available: 1,
fabric_meters_remaining: 256.78,
fabric_virutal_meters_remaining: 216.28,
created_at: "2016-12-02 10:52:09",
updated_at: "2016-12-02 13:08:07",
brand_id: 1,
season_id: 1,
brand: App\Brands {#742
id: 1,
brand_name: "*****",
created_at: "2016-12-02 11:36:10",
updated_at: "2016-12-02 11:36:10",
},
season: App\Seasons {#795
id: 1,
season_name: "Autumn/Winter 2016",
season_code: "AW16",
created_at: "2016-12-02 13:07:50",
updated_at: "2016-12-02 13:07:50",
},
},
App\Fabrics {#765
id: 2,
fabric_code: "GMAN02",
fabric_design: "ANODA",
fabric_price_group: "I",
fabric_retail_price: "27.00",
fabric_trade_price: null,
fabric_width: 141,
fabric_pattern_repeat: 1,
fabric_fiber: "48% POLYESTER 44% COTTON 8% VISCOSE",
fabric_online: 1,
fabric_available: 0,
fabric_meters_remaining: 20.0,
fabric_virutal_meters_remaining: 17.0,
created_at: "2016-12-02 10:52:09",
updated_at: "2016-12-02 13:14:56",
brand_id: 2,
season_id: 1,
brand: App\Brands {#770
id: 2,
brand_name: "*****",
created_at: "2016-12-02 11:36:10",
updated_at: "2016-12-02 11:36:10",
},
season: App\Seasons {#795},
},
App\Fabrics {#791
id: 3,
fabric_code: "JBBU01",
fabric_design: "BURDOCK",
fabric_price_group: "D",
fabric_retail_price: "16.00",
fabric_trade_price: null,
fabric_width: 140,
fabric_pattern_repeat: 64,
fabric_fiber: "100% COTTON",
fabric_online: 0,
fabric_available: 1,
fabric_meters_remaining: 856.1,
fabric_virutal_meters_remaining: 856.1,
created_at: "2016-12-02 10:52:09",
updated_at: "2016-12-02 13:08:13",
brand_id: 3,
season_id: 4,
brand: App\Brands {#787
id: 3,
brand_name: "*****",
created_at: "2016-12-02 11:36:10",
updated_at: "2016-12-02 11:36:10",
},
season: App\Seasons {#775
id: 4,
season_name: "Spring/Summer 2015",
season_code: "SS15",
created_at: "2016-12-02 13:07:50",
updated_at: "2016-12-02 13:07:50",
},
},
],
}
答案 0 :(得分:5)
使用http://www.jqueryscript.net/chart-graph/Customizable-Animated-jQuery-HTML5-Gauge-Meter-Plugin.html:
的闭包App\fabrics::with(['brand', 'season' => function($q) use($seasonId) {
$q->where('id', $seasonId);
}])->get();
如果您想按季节ID过滤面料,请使用eager loads contraining:
App\fabrics::with('brand', 'season')
->whereHas('season', function($q) use($seasonId) {
$q->where('id', $seasonId);
})->get();