2017-05-12 44 views

回答

1

隨着@ 3dgoo的幫助下,

看起來我需要以下:

<% loop $Products.filter('Product_ProductCategories.ProductCategoryID', $MyFilter) %> 
3

Product有一個多對多的關係,以ProductCategory稱爲ProductCategories

如果我們要過濾產品的類別關係,我們將調用如下

$Product.filter('ProductCategories.ID', 5) 

我會建議在控制器中寫一個函數此過濾器。事情是這樣的:

public function getFilteredProducts() { 
    return Product::get()->filter('ProductCategories.Title', 'my-filter'); 
}