1 Star 0 Fork 2

swantbo/h5maker

forked from zhangqiang/h5maker 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
routers.js 575 Bytes
一键复制 编辑 原始数据 按行查看 历史
郑国榕 提交于 2017-05-23 14:42 . 重新整理目录结构
var errors = require('./components/errors')
module.exports = function (app) {
app.use('/api/users', require('./api/user'));
app.use('/api/pages', require('./api/pages'));
app.use('/api/upload', require('./api/file'));
app.use('/auth', require('./auth'))
// 404错误处理
app.route('/:url(api|auth|components|app|bower_components|assets)/*')
.get(errors[404]);
// 前端页面渲染路由
app.route('/perview/:id').get(require('./render/preview'))
// 其他资源路由
app.route('/*')
.get((req, res) => {
res.render('index')
});
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/swantbo/h5maker.git
git@gitee.com:swantbo/h5maker.git
swantbo
h5maker
h5maker
master

搜索帮助