Context Storage 中间件
Context Storage 中间件将 Hono 的 Context
存储在 AsyncLocalStorage
中,使其全局可访问。
INFO
注意 这个中间件使用了 AsyncLocalStorage
。运行时环境需要支持它。
Cloudflare Workers: 为了启用 AsyncLocalStorage
,请将 nodejs_compat
或 nodejs_als
flag 添加到你的 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', 'Hello!')
await next()
})
// 你可以在处理函数外部访问变量。
const getMessage = () => {
return getContext<Env>().var.message
}
app.get('/', (c) => {
return c.text(getMessage())
})
在 Cloudflare Workers 上,你可以在处理函数外部访问 bindings。
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)
}