Exception
当发生致命错误时,例如身份验证失败,必须抛出 HTTPException
。
throw HTTPException
此示例从中间件抛出一个 HTTPException
。
ts
import { HTTPException } from 'hono/http-exception'
// ...
app.post('/auth', async (c, next) => {
// 身份验证
if (authorized === false) {
throw new HTTPException(401, { message: '自定义错误消息' })
}
await next()
})
你可以指定返回给用户的响应。
ts
import { HTTPException } from 'hono/http-exception'
const errorResponse = new Response('Unauthorized', {
status: 401,
headers: {
Authenticate: 'error="invalid_token"',
},
})
throw new HTTPException(401, { res: errorResponse })
Handling HTTPException
你可以使用 app.onError
处理抛出的 HTTPException
。
ts
import { HTTPException } from 'hono/http-exception'
// ...
app.onError((err, c) => {
if (err instanceof HTTPException) {
// 获取自定义响应
return err.getResponse()
}
// ...
})
cause
cause
选项可用于添加 cause
数据。
ts
app.post('/auth', async (c, next) => {
try {
authorize(c)
} catch (e) {
throw new HTTPException(401, { message, cause: e })
}
await next()
})