Skip to content

辅助函数

辅助函数用于协助开发应用程序。与中间件不同,它们不作为处理器使用,而是提供实用的功能函数。

例如,以下是如何使用 Cookie 辅助函数

ts
import { getCookie, setCookie } from 'hono/cookie'

const app = new Hono()

app.get('/cookie', (c) => {
  const yummyCookie = getCookie(c, 'yummy_cookie')
  // ...
  setCookie(c, 'delicious_cookie', 'macha')
  //
})

可用的辅助函数

Released under the MIT License.