fastadmin后台中文章分类ID改为名称显示
首先找到你当前的文章类后台控制器。
一般在application/admin/controller 下面
先添加模型
use app\admin\model\zsw\Type as ZswTypeModel;
然后覆盖index方法
public function index()
{
//设置过滤方法
$this->request->filter(['strip_tags']);
if ($this->request->isAjax())
{
//如果发送的来源是Selectpage,则转发到Selectpage
if ($this->request->request('keyField'))
{
re