📅  最后修改于: 2020-10-22 06:47:49             🧑  作者: Mango
Next.JS中的API路由具有内置的中间件,这些中间件有助于解析传入的请求。
以下是中间件
req.cookies -cookie对象包含请求发送的cookie。默认值为{}。
req.query-查询对象包含查询字符串。默认值为{}。
req.body-查询对象包含使用“ content-type”解析的请求正文。默认值为空。
让我们创建一个示例来演示相同的内容。
在此示例中,我们将更新pages / api目录中的user.js。
让我们更新“ API路由”一章中使用的nextjs项目。
如下在pages / api目录中创建user.js文件。
export default (req, res) => {
res.statusCode = 200
res.setHeader('Content-Type', 'application/json')
res.end(JSON.stringify({ query: req.query }))
}
运行以下命令以启动服务器-。
npm run dev
> nextjs@1.0.0 dev D:\Node\nextjs
> next
ready - started server on http://localhost:3000
info - Loaded env from D:\Node\nextjs\.env.local
event - compiled successfully
event - build page: /api/user
wait - compiling...
event - compiled successfully
event - build page: /next/dist/pages/_error
wait - compiling...
event - compiled successfully
在浏览器中打开http:// localhost:3000 / api / user?counter = 1,您将看到以下输出。
{"query":{"counter":"1"}}