文件名称:mvc-scaffolding
文件大小:4KB
文件格式:ZIP
更新时间:2024-06-29 01:01:59
JavaScript
MVC 脚手架 依赖关系 用法 /routes.json [ { " url " : " /path " , " method " : " GET " , " controller " : " IndexController " , " action " : " index " } ] /modules/IndexController.js var IndexController = { index : function ( req , res ) { // Returns view object return { title : 'Welcome!' } ; } , ... } ; exports . act
【文件预览】:
mvc-scaffolding-master
----package.json(199B)
----routes.json(384B)
----views()
--------not-found.mustache(142B)
--------server-busy.mustache(144B)
--------index.mustache(136B)
----main.js(3KB)
----.gitignore(28B)
----README.md(573B)
----modules()
--------IndexController.js(694B)