0

我有这堂课:

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
    );
}

得出此结果的最佳方法是什么:

  • MyFirstModelProductType应该向我显示表中的所有条目Type1

  • MySecondModelProductType应该向我显示表中的所有条目Type2
4

1 回答 1

5

getList()应该是答案。文档在这里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;
}

如果您有超过 2 个ProductType,则可以使用数组来排除多个值,例如

$list->exclude('ProductType', array('Type2', 'Type3'));
于 2013-09-06T11:06:49.640 回答