Compare commits

...

10 Commits
v2 ... master

Author SHA1 Message Date
yutent 7cb670146a 2.0.4 2024-07-10 09:25:46 +08:00
yutent 7646140360 简化路由代码 2024-07-01 10:41:40 +08:00
yutent b9c752f8c8 简化路由代码 2024-07-01 10:34:58 +08:00
yutent e436429872 Merge branch 'master' of git.wkit.fun:gm5/core 2024-06-28 09:59:50 +08:00
yutent 79ff113b6f 优化跨域逻辑 2024-06-27 18:38:01 +08:00
yutent 0cb5a56a60 Update package.json 2024-02-23 20:54:45 +08:00
yutent b1992d69af Update middleware/cors.js 2024-02-23 20:54:26 +08:00
yutent 38c79587e2 修复跨域中间件 2023-11-08 09:33:12 +08:00
yutent 2bbecc5a25 更新;readme 2023-11-02 18:13:50 +08:00
yutent 4daf60ba90 路由模式开关改名 2023-11-02 17:10:51 +08:00
5 changed files with 32 additions and 21 deletions

View File

@ -11,6 +11,10 @@
框架要求 nodejs 版本在 12.0 或以上, 并且只支持使用`import/export`
## 文档
[文档](/gm5/core/wiki)
## 启用方法(步骤)
**注**
@ -47,7 +51,7 @@ app.preload('./apps/') // [必须], 预加载应用目录
app.listen(3001) // 默认是3000
```
其他的配置和功能, 请参考 [文档](/gm5/request/wiki)。
其他的配置和功能, 请参考 [文档](/gm5/core/wiki)。
3. 启动应用。在项目根目录打开终端, 输入以下命令 `npm create five`, 然后根据提示操作, 即可

View File

@ -8,8 +8,8 @@ const ENV_PROD = 'production'
const ENV_DEV = 'development'
export default {
db: {},
spa: false, // 单路由模式, 即无论是访问路径是什么, 永远只会调用 \apps\index\index()
// 动态路由模式, 即无论是访问路径是什么, 永远只会调用 \apps\index\index()
dynamic: false,
port: 3000,
env: process.env.NODE_ENV === ENV_PROD ? ENV_PROD : ENV_DEV,
debug: process.env.NODE_ENV === ENV_DEV, // debug模式

View File

@ -11,11 +11,15 @@ export function createCors() {
let opts = this.get('cors')
if (opts.enabled) {
let origin = req.header('origin') || req.header('referer') || ''
let headers = req.header('access-control-request-headers')
let origin = req.headers['origin'] || req.headers['referer'] || ''
let headers = req.headers['access-control-request-headers']
if (!origin) {
return next()
}
let { hostname, host, protocol } = parse(origin)
if (opts.origin.length && hostname) {
if (opts.origin.length) {
let pass = false
for (let it of opts.origin) {
if (hostname.endsWith(it)) {
@ -24,7 +28,7 @@ export function createCors() {
}
}
if (pass === false) {
return res.end('')
return (res.body = null)
}
}
if (opts.credentials) {
@ -32,7 +36,7 @@ export function createCors() {
}
res.set('Access-Control-Allow-Origin', `${protocol}//${host}`)
res.set('Access-Control-Allow-Methods', req.method)
res.set('Access-Control-Allow-Methods', '*')
if (headers) {
res.set('Access-Control-Allow-Headers', headers)
@ -43,7 +47,7 @@ export function createCors() {
}
if (req.method === 'OPTIONS') {
return res.end('')
return (res.body = null)
}
}
next()

View File

@ -9,20 +9,23 @@ import { readonlyProp } from '../lib.js'
export function createRouter() {
return function (req, res, next) {
let debug = this.get('debug')
let spa = this.get('spa')
let dynamic = this.get('dynamic')
let name = dynamic ? 'index' : req.controller
let _module = this.$load(name)
let paths = req.path.concat()
// 1. 先判断控制器是否存在
if (!this.$load(spa ? 'index' : req.controller)) {
return res.error(`Controller [${req.controller}] not found`, 404)
if (!_module) {
return res.error(`Controller [${name}] not found`, 404)
}
// 2. 默认二级路由为index
if (req.path.length < 1 && spa === false) {
req.path.push('index')
if (paths.length < 1 && dynamic === false) {
paths.push('index')
}
// 3. 实例化控制器
this.$load(spa ? 'index' : req.controller)
_module
.then(async ModuleController => {
let ctrol, route, act
let err = ''
@ -47,21 +50,21 @@ export function createRouter() {
}
}
if (spa) {
return ctrol.indexAction.apply(ctrol, req.path)
if (dynamic) {
return ctrol.indexAction.apply(ctrol, paths)
} else {
route = req.path.shift()
route = paths.shift()
act = route + 'Action'
if (ctrol[act]) {
return ctrol[act].apply(ctrol, req.path)
return ctrol[act].apply(ctrol, paths)
} else {
err = new Error(`Action [${route}] not found`)
err.status = 404
}
}
} else {
err = new Error(`Controller [${req.controller}] load error`)
err = new Error(`Controller [${name}] load error`)
err.status = 500
}

View File

@ -1,6 +1,6 @@
{
"name": "@gm5/core",
"version": "2.0.0",
"version": "2.0.4",
"type": "module",
"description": "Five.js, 一个轻量级的nodejs mvc框架 旨在简单易用, 5分钟即可上手",
"author": "yutent <yutent.io@gmail.com>",