npmrun 2 years ago
parent
commit
160e42914e
  1. 4
      package.json
  2. 0
      public/style/views/404.css
  3. 2
      route.txt
  4. 2
      source/route/views/index.ts
  5. 2
      template/404.pug
  6. 2
      tsconfig.json

4
package.json

@ -10,8 +10,8 @@
"zip": "node script/zip.js",
"build": "tsc && tsc-alias",
"start": "node -r dotenv/config dist/main.js dotenv_config_path=.env.production",
"dev": "tsx watch -r tsconfig-paths/register -r dotenv/config ./source/main.ts dotenv_config_path=.env.development",
"devb": "ts-node-dev --watch ./source/route --ignore-watch ./source/route/route.txt --respawn --project ./tsconfig.json -r tsconfig-paths/register -r dotenv/config ./source/main.ts dotenv_config_path=.env.development",
"devb": "tsx watch -r tsconfig-paths/register -r dotenv/config ./source/main.ts dotenv_config_path=.env.development",
"dev": "ts-node-dev --watch ./source/route --ignore-watch ./route.txt --respawn --project ./tsconfig.json -r tsconfig-paths/register -r dotenv/config ./source/main.ts dotenv_config_path=.env.development",
"deva": "nodemon --exec 'ts-node --project ./tsconfig.json -r tsconfig-paths/register ./source/main.ts'",
"test": "lab --require tsconfig-paths/register --typescript -P test -v"
},

0
public/style/views/404.css

2
route.txt

@ -1,5 +1,5 @@
D:\1XYX\pro\hapi-demo\source\route\views对应路径:
不需权限(提供无需验证try): GET /404
不需权限(提供即需验证optional): GET /404
不需权限(提供即需验证optional): GET /
不需权限(提供无需验证try): GET /about
需要权限 : POST /color/del

2
source/route/views/index.ts

@ -155,7 +155,7 @@ export default class Index {
return h.redirect("/404?r=" + encodeURIComponent(req.raw.req.url))
}
@route("/404")
@auth("try")
@auth("optional")
async 404(request: Req, h: Res): ReturnValue {
if (request.auth.isAuthenticated) {
// 登录了

2
template/404.pug

@ -1,7 +1,7 @@
extends layout/layout
block head
link(rel="stylesheet", href="/public/css/views/404.css")
link(rel="stylesheet", href="/public/style/views/404.css")
block content
include @/helper/flush.pug

2
tsconfig.json

@ -9,7 +9,7 @@
"sourceMap": false,
"module": "commonjs",
"experimentalDecorators": true,
"moduleResolution": "nodenext",
"moduleResolution": "Node",
"esModuleInterop": true, // esModuleInterop使import d from 'cjs'commonjs
"baseUrl": ".",
"paths": {

Loading…
Cancel
Save