fastadmin使用记录

一键生成CRUD

创建
php think crud -t test -c mydir/test

删除
php think crud -t test -c mydir/test -d 1

一键生成菜单

创建
php think menu -c mydir/test

删除
php think menu -c 控制器名 -d 1

常见问题:
在使用php think menu前确保你的控制器已经添加或通过php think crud生成好
如果之前已经生成了菜单,需要再次生成,请登录后台手动删除之前生成的菜单或使用php think menu -c 控制器名 -d 1来删除

一键CRUD怎么关联多表生成CRUD

关联暂时只能关联一个模型,需要关联多个模型时需要自己再手动编辑。
简单的操作命令如下:
php think crud -t 主表 -r 关联表
php think crud -t 主表 -r 子表 -k 外键
php think crud -t user -r admin -k admin_id

你可能感兴趣的:(fastadmin使用记录)