next.js 我怎么能访问API路由在下一个js的app目录中的查询,因为我想通过查询我请求的URL来做分页

gzjq41n4  于 2023-06-22  发布在  其他
关注(0)|答案(1)|浏览(116)

enter image description here
我在查询下面看到弯弯曲曲的线条,上面写着属性“query”不存在于类型“Request”上。
enter image description here这是我的博客组件
沿着回答,有人能提供一个他们完成类似任务的工作例子吗?

5t7ly7z5

5t7ly7z51#

export async function POST(req: Request) {
  const {searchParams}=new URL(req.url)

}

其类型为

const searchParams: URLSearchParams

它有get方法。

get(name: string): string | null;

假设您有“location”查询参数

const location=searchParams.get("location")

相关问题