我有这堂课:
class Product extends DataObject {
static $db = array(
'Name' => 'Varchar',
'ProductType' => 'Varchar',
'Price' => 'Currency'
);
}
数据库表如下所示:
---------------------------------
| Name | ProductType | Price |
|-----------+-------------+-------|
| Product 1 | Type1 | 100 |
| Product 2 | Type1 | 240 |
| Product 3 | Type2 | 10 |
| Product 4 | Type1 | 100 |
---------------------------------
我想有2位模特管理员:
class MyFirstModel extends ModelAdmin {
public static $managed_models = array(
Product
);
}
class MySecondModel extends ModelAdmin {
public static $managed_models = array(
Product
);
}
获得此结果的最佳方式是什么:
MyFirstModel
应该向我显示表格中ProductType
为Type1
的所有条目和
MySecondModel
应该向我显示表格中ProductType
为Type2
的所有条目答案 0 :(得分:5)
getList()
应该是答案。 DOC在这里http://doc.silverstripe.org/framework/en/reference/modeladmin#results-customization
类似于:
public function getList() {
$list = parent::getList();
if($this->modelClass == 'Product') {
$list->exclude('ProductType', 'Type1');
}
return $list;
}
如果您有两个以上ProductType
,则可以使用数组排除多个值,例如
$list->exclude('ProductType', array('Type2', 'Type3'));