显示扩展
详情扩展
since v1.6.12
这个功能用来扩展详情字段显示, 在内置的显示方法不满足需求的情况下,可以使用这个功能来实现
首先定义扩展类:
<?php
namespace App\Admin\Extensions\Show;
use Encore\Admin\Show\AbstractField;
class UnSerialize extends AbstractField
{
public function render($arg = '')
{
// 返回任意可被渲染的内容
return unserialize($this->value);
}
}
然后在app/Admin/bootstrap.php中注册扩展类
use Encore\Admin\Show;
use App\Admin\Extensions\Show\UnSerialize;
Show::extend('unserialize', UnSerialize::class);
然后在控制器中使用这个扩展
$show->column()->unserialize('xxx');
传入unserialize()方法的参数会按顺序传入UnSerialize::render()方法中。
在父类Encore\Admin\Show\AbstractField中可以看到几个常用的属性
/**
* Field value.
*
* @var mixed
*/
protected $value;
/**
* Current field model.
*
* @var Model
*/
protected $model;
/**
* If this field show with a border.
*
* @var bool
*/
public $border = true;
/**
* If this field show escaped contents.
*
* @var bool
*/
public $escape = true;
其中$value和$model分别是当前字段值和当前数据的模型,在render()方法中可以用来获取你想要的数据。
$border用来控制当前显示内容是否需要外边框,$escape分别用来设置当前显示内容要不要HTML转义。