跳至内容

上下文存储中间件

上下文存储中间件将 Hono 的 Context 存储在 AsyncLocalStorage 中,使其在全局范围内可访问。

信息

注意 此中间件使用 AsyncLocalStorage。运行时应支持它。

Cloudflare Workers: 要启用 AsyncLocalStorage,请将 nodejs_compatnodejs_als 标志 添加到您的 wrangler.toml 文件。

导入

ts
import { Hono } from 'hono'
import { contextStorage, getContext } from 'hono/context-storage'

用法

如果 contextStorage() 被用作中间件,则 getContext() 将返回当前上下文对象。

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()
})

// You can access the variable outside the handler.
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)
}

根据 MIT 许可发布。