fastadmin的學習筆記 1 curd

2021-10-23 19:32:09 字數 1327 閱讀 3403

在fastadmin的文件中是這樣解釋curd命令的:

在fastadmin中可以快速的一鍵生成crud,其中包括控制器、模型、檢視、驗證器、語言包、js。

常用curd命令:

//生成fa_test表的crud

php think crud -t test

//生成fa_test表的crud且一鍵生成選單

php think crud -t test -u 1

//刪除fa_test表生成的crud

php think crud -t test -d 1

//生成fa_test表的crud且控制器生成在二級目錄下

php think crud -t test -c mydir/test

//生成fa_test_log表的crud且生成對應的控制器為testlog

php think crud -t test_log -c testlog

//生成fa_test表的crud且對應的模型名為testmodel

php think crud -t test -m testmodel

//生成fa_test表的crud且生成關聯模型category,外鏈為category_id,關聯表主鍵為id

php think crud -t test -r category -k category_id -p id

//生成fa_test表的crud且所有以list或data結尾的字段都生成核取方塊

php think crud -t test --setcheckboxsuffix=list --setcheckboxsuffix=data

//生成fa_test表的crud且所有以image和img結尾的字段都生成上傳元件

php think crud -t test --imagefield=image --imagefield=img

//關聯多個表,引數傳遞時請按順序依次傳遞,支援以下幾個引數relation/relationmodel/relationforeignkey/relationprimarykey/relationfields/relationmode

php think crud -t test --relation=category --relation=admin --relationforeignkey=category_id --relationforeignkey=admin_id

//生成v_phealth_db2資料庫下的fa_test表的crud

php think crud -t test --db=v_phealth_db2

fastadmin 狀態的設定

在使用fastadmin過程中難免有忘記資料字段設定的時候,這裡主要是記錄一下怎麼來補救方式以及頁面篩選的 的設定。這是我們生產的結果,造成頁面的直接展示我們資料儲存的數字內容 我們可以給這個狀態新增乙個searchlist formatter table.api.formatter.status ...

學習筆記1

struct test test int x void fun class test1 test1 int x void fun int main void test1 a 行1 a.fun 行2 test1 b 行3 b.fun 行4 test c 行5 c.fun 行6 test d 行7 d....

學習筆記1

1 字串原地逆序 使用臨時變數 void reverse string s 5 求平均值 避免溢位 int f int x,int y 6 楊氏矩陣 bool young int a m n int x return false 7 十進位制轉十六進製制 string decimaltohexade...