📅  最后修改于: 2020-10-22 06:48:06             🧑  作者: Mango
res对象具有类似于helper方法的express.js,可以简化开发以创建服务。
以下是响应帮助器方法
res.status(code) -此方法设置响应状态。传递的代码必须是有效的HTTP状态。
req.json(json) -此方法返回JSON响应。传递的json必须是有效的JSON对象。
req.send(body) -此方法发送HTTP响应。响应可以是字符串,对象或缓冲区。
让我们创建一个示例来演示相同的内容。
在此示例中,我们将更新pages / api目录中的user.js。
让我们更新“ API路由”一章中使用的nextjs项目。
如下在pages / api目录中创建user.js文件。
export default (req, res) => {
res.status(200).json({ name: 'Robert' });
}
运行以下命令以启动服务器-。
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,您将看到以下输出。
{ name: 'Robert' }