adonis adminify
1.0.0
基于AdonisJs和Adminify(基于Vuetify)的管理仪表板应用程序,请参阅Adonis China了解更多信息。关键词:NodeJs、VueJs、AdonisJs、ORM、关系、SQLite、MySQL、中间件、Restful、CRUD、材料设计
git clone https://github.com/adonis-china/adonis-admin.git
cd adonis-admin
cp .env.example .env
npm install && npm run serve:dev
启动 api 服务器./ace migration:refresh --seed
fill 数据库(在 Windows 上使用node ace
)git submodule update --recursive --remote --init
拉取子模块cd adminify
cp src/config.sample.js src/config.js
在 Windows 上使用copy
src/config.js
中将debug.mock
更改为false
npm install && npm run dev
启动客户端http://localhost:8080
(或其他端口)。在中国使用
cnpm
代替npm
./ace make:model -m Page
,创建Page
模型并进行页面管理迁移。/database/migrations/1496388160682_create_page_table.js
,添加一些字段: table . increments ( )
table . integer ( 'type_id' ) . unsigned ( ) . nullable ( )
table . foreign ( 'type_id' ) . references ( 'types.id' )
table . string ( 'title' ) . notNullable ( )
table . text ( 'body' )
table . timestamps ( )
./ace migration:run
创建表/app/Model/Page.js
,添加belongsTo
关系: class Page extends Lucid {
type ( ) {
return this . belongsTo ( 'App/Model/Type' )
}
}
/app/Http/Controllers/Admin/Api/EmptyController.js
复制到PageController.js
,然后更改为: 'use strict'
const RestController = require ( './RestController' )
const Page = use ( 'App/Model/Page' )
const Type = use ( 'App/Model/Type' )
class PageController extends RestController {
get resource ( ) {
return 'pages'
}
get expand ( ) {
return [ 'type' ]
}
* gridData ( ) {
//change the fields
return {
options : {
sort : 'id' , //or '-id' as desc
create : true ,
update : true ,
delete : true
} ,
// filters: false,
filters : {
model : {
title : '' ,
created_at : ''
} ,
fields : {
title : { label : 'Title' } ,
created_at : { label : t ( 'fields.Page.created_at' ) , Page : 'date' }
} ,
rules : { } ,
} ,
columns : [
{ text : t ( 'fields.Page.id' ) , value : 'id' } ,
{ text : t ( 'fields.Page.title' ) , value : 'title' }
]
}
}
* formData ( request , response ) {
let model = {
title : '' ,
type_id : null ,
body : '' ,
}
let id
if ( request ) {
id = request . input ( 'id' )
if ( id ) {
model = yield Page . query ( ) . where ( 'id' , id ) . first ( )
}
}
let typeOptions = yield Type . query ( ) . select ( 'id' , 'name' ) . fetch ( )
for ( let type of typeOptions ) {
type . text = type . name
type . value = type . id
}
return {
model : model ,
fields : {
title : { label : 'Title' , hint : 'Page Title' , required : true } ,
type_id : {
label : 'Type' , type : 'select' , options : typeOptions , required : true ,
} ,
body : { label : 'Body' , type : 'html' , required : false } ,
} ,
rules : model . rules ,
messages : model . messages
}
}
}
module . exports = PageController
/app/Http/routes.js:26
中添加路由 const resources = [ 'posts' , 'users' , 'types' , 'comments' , 'settings' , 'pages' ]
/adminify/src/menu.js
中添加菜单,然后您可以看到它显示在左侧菜单中{ "href" : " /crud/pages " , "title" : " Pages " , "icon" : " view_list " },
http://localhost:8080/#/crud/pages
您将获得所有页面的网格列表视图。plus
按钮添加页面,添加后也可以对其进行编辑。