上下文存储中间件
上下文存储中间件将 Hono Context 存储在 AsyncLocalStorage 中,使其可全局访问。
INFO
注意 此中间件使用 AsyncLocalStorage。运行时应支持它。
Cloudflare Workers:要启用 AsyncLocalStorage,请将 nodejs_compat 或 nodejs_als 标志 添加到您的 wrangler.toml 文件中。
导入
ts
import { Hono } from 'hono'
import { contextStorage, getContext } from 'hono/context-storage'用法
如果将 contextStorage() 应用为中间件,getContext() 将返回当前的 Context 对象。
ts
type Env = {
Variables: {
message: string
}
}
const app = new Hono<Env>()
app.use(contextStorage())
app.use(async (c, next) => {
c.set('message', '你好!')
await next()
})
// 您可以在处理程序之外访问变量。
const getMessage = () => {
return getContext<Env>().var.message
}
app.get('/', (c) => {
return c.text(getMessage())
})在 Cloudflare Workers 上,您可以在处理程序之外访问绑定。
ts
type Env = {
Bindings: {
KV: KVNamespace
}
}
const app = new Hono<Env>()
app.use(contextStorage())
const setKV = (value: string) => {
return getContext<Env>().env.KV.put('key', value)
}