Sonataadminbundle出口商问题与映射实体



Sonata-Admin-Bundle中有一个标准功能,可以使用导出器导出数据;但是如何使出口当前实体并用它绘制了许多实体?

基本上我想要的是下载与ListFields中定义的完全相同的数据。

upd:在文档中,只有todo

upd2:我找到了一种解决方案,但我认为这不是最好的解决方案:

/**
 * Add some fields from mapped entities; the simplest way;
 * @return array
 */
public function getExportFields() {
    $fieldsArray = $this->getModelManager()->getExportFields($this->getClass());
    //here we add some magic :)
    $fieldsArray[] = 'user.superData';
    $fieldsArray[] = 'user.megaData';
    return $fieldsArray;
}

我创建了从DoctrineOrmquerysoursourceiterator继承的源迭代器。

如果方法中的值是getValue是数组或可遍历的实例,我调用方法getValue递归以获取每个"许多"实体的值:

protected function getValue($value)
{
    //if value is array or collection, creates string 
    if (is_array($value) or $value instanceof Traversable) {
        $result = [];
        foreach ($value as $item) {
           $result[] = $this->getValue($item);
        }
        $value = implode(',', $result);
    //formated datetime output    
    } elseif ($value instanceof DateTime) {
        $value = $this->dateFormater->format($value);
    } elseif (is_object($value)) {
        $value = (string) $value;
    }
    return $value;
}

在您的管理类中,您必须覆盖方法getDatasourceiterator返回自己的迭代器。

这个

$this->getModelManager()->getExportFields($this->getClass());

返回所有实体项目。更好的做法是在方法getexportfields()

中创建出口项目的明确列表
public function getExportFields()
{       
    return [
        $this->getTranslator()->trans('item1_label_text') => 'entityItem1', 
        $this->getTranslator()->trans('item2_label_text') => 'entityItem2.subItem', 
        //subItem after dot is specific value from related entity
....

数组中的键用于导出表标头(此处已捕集)。

相关内容

  • 没有找到相关文章

最新更新