userAgent
userAgent
帮助程序扩展了 Web 请求 API,并提供了其他属性和方法来与请求中的用户代理对象进行交互。
middleware.ts
import { NextRequest, NextResponse, userAgent } from 'next/server'
export function middleware(request: NextRequest) {
const url = request.nextUrl
const { device } = userAgent(request)
const viewport = device.type === 'mobile' ? 'mobile' : 'desktop'
url.searchParams.set('viewport', viewport)
return NextResponse.rewrite(url)
}
isBot
一个布尔值,指示请求是否来自已知的机器人。
browser
一个包含请求中使用的浏览器信息的键值对。
name
:表示浏览器名称的字符串,如果无法识别则为undefined
。version
:表示浏览器版本的字符串,或undefined
。
device
一个包含请求中使用的设备信息的键值对。
model
:表示设备型号的字符串,或undefined
。type
:表示设备类型的字符串,例如console
、mobile
、tablet
、smarttv
、wearable
、embedded
或undefined
。vendor
:表示设备供应商的字符串,或undefined
。
engine
一个包含浏览器引擎信息的键值对。
name
:表示引擎名称的字符串。可能的值包括:Amaya
、Blink
、EdgeHTML
、Flow
、Gecko
、Goanna
、iCab
、KHTML
、Links
、Lynx
、NetFront
、NetSurf
、Presto
、Tasman
、Trident
、w3m
、WebKit
或undefined
。version
:表示引擎版本的字符串,或undefined
。
os
一个包含操作系统信息的键值对。
name
:表示操作系统名称的字符串,或undefined
。version
:表示操作系统版本的字符串,或undefined
。
cpu
包含有关 CPU 架构信息的对象。
architecture
: 表示 CPU 架构的字符串。可能的值包括:68k
、amd64
、arm
、arm64
、armhf
、avr
、ia32
、ia64
、irix
、irix64
、mips
、mips64
、pa-risc
、ppc
、sparc
、sparc64
或undefined
这有帮助吗?