我的实体的字段public
是布尔值。我想在导出文件中将此值转换为enable
或disable
。
public function getExportFields()
{
return [
'slug',
'title',
'collection',
'type',
'createdAt',
'updatedAt',
'author',
'state',
'public'
];
}
答案 0 :(得分:0)
在实体类中编写一个getter函数,将值转换为字符串
public function isPublicAsString() {
return $this->isPublic ? 'enable' : 'disable';
}
在导出功能中,将public
替换为publicAsString
。