Skip to content

Accepts 助手

Accepts 助手帮助处理请求中的 Accept 标头。

导入

ts
import { Hono } from 'hono'
import { accepts } from 'hono/accepts'

accepts()

accepts() 函数会查看 Accept 标头,例如 Accept-Encoding 和 Accept-Language,并返回合适的值。

ts
import { accepts } from 'hono/accepts'

app.get('/', (c) => {
  const accept = accepts(c, {
    header: 'Accept-Language',
    supports: ['en', 'ja', 'zh'],
    default: 'en',
  })
  return c.json({ lang: accept })
})

AcceptHeader 类型

AcceptHeader 类型的定义如下。

ts
export type AcceptHeader =
  | 'Accept'
  | 'Accept-Charset'
  | 'Accept-Encoding'
  | 'Accept-Language'
  | 'Accept-Patch'
  | 'Accept-Post'
  | 'Accept-Ranges'

选项

required header: AcceptHeader

目标 accept 标头。

required supports: string[]

你的应用支持的标头值。

required default: string

默认值。

optional match: (accepts: Accept[], config: acceptsConfig) => string

自定义匹配函数。

在 MIT 许可证下发布。