十月导出文件 url 到数据库
October export file url to database
有没有办法将 10 月份的文件 url 导出到数据库 table?我目前有一个名为“图像”的模型,它通过执行以下操作存储 url:
public $attachOne = [
'image' => ['System\Models\File']
];
我将其他属性存储在模型列表(称为 columns.yaml)和数据库中,如果可能,我想在此处添加 url?
columns:
id:
label: ID
type: number
name:
label: Name
type: text
searchable: true
sortable: true
比较简单,只需要添加Accessor
在你的模式中添加这个访问器
public function getImagePathAttribute() {
return $this->image->path;
}
并且在您的模态栏中
columns:
id:
label: ID
type: number
name:
label: Name
type: text
searchable: true
sortable: true
image_path:
label: Image Path
type: text
现在它将图像的路径显示为一列,您可以导出它的值。
如有疑问请评论。
有没有办法将 10 月份的文件 url 导出到数据库 table?我目前有一个名为“图像”的模型,它通过执行以下操作存储 url:
public $attachOne = [
'image' => ['System\Models\File']
];
我将其他属性存储在模型列表(称为 columns.yaml)和数据库中,如果可能,我想在此处添加 url?
columns:
id:
label: ID
type: number
name:
label: Name
type: text
searchable: true
sortable: true
比较简单,只需要添加Accessor
在你的模式中添加这个访问器
public function getImagePathAttribute() {
return $this->image->path;
}
并且在您的模态栏中
columns:
id:
label: ID
type: number
name:
label: Name
type: text
searchable: true
sortable: true
image_path:
label: Image Path
type: text
现在它将图像的路径显示为一列,您可以导出它的值。
如有疑问请评论。