gpt4 book ai didi

javascript - 使用 Serverless Next JS 在同一路由上的不同 Content-Type

转载 作者:行者123 更新时间:2023-12-05 00:35:39 25 4
gpt4 key购买 nike

我想知道无服务器(部署在 Vercel 上)Next JS 是否可以实现以下场景:
我有一条路线 /product/[id].tsx当您发送带有 Accept: text/html header 的请求时,我希望它通过带有 React 页面的正常 Next JS 流程。但是,当使用 Accept: application/json 发出请求时,我希望它返回 JSON 表示。
我已经通过使用我为 Express 编写的一些自定义中间件来完成它(见下文),但我也想将它部署在 Vercel 上,而 Vercel 并不是为使用自定义 Express 实现而设计的。
所以问题是,是否有可能在无服务器环境中做到这一点? Next JS React 页面之一能否返回纯 JSON,或者您能否从 Next JS Api 路由返回 React?还是有另一种方法可以做到这一点?
服务器.ts

import express, { Request, Response } from "express";
import next from 'next'
import { parse } from 'url'

const port = parseInt(process.env.PORT || "3000", 10);
const dev = process.env.NODE_ENV !== "production";

async function run(): Promise<void> {
const app = express();
const nextApp = next({ dev })
const nextHandler = nextApp.getRequestHandler()
await nextApp.prepare()

app.use((req, res) => {
res.format({
"text/html": async (req, res) => {
const parsedUrl = parse(req.url!, true)
await this.handler(req, res, parsedUrl)
},
"application/json": async (req, res) => {
res.json({
"dummy": "data"
})
}
})
});

app.listen(port, () => {
console.log(
`> Server listening at http://localhost:${port} as ${
dev ? "development" : process.env.NODE_ENV
}`
);
});
}

run()

最佳答案

感谢 Twitter 上的@timneutkens(NextJS 的首席工程师),我们得到了答案。有可能的。您使用 getServerSideProps并执行你想要的一切到res对象那里。请务必以 .end 结束它所以它跳过了 react 渲染阶段。
我在这里为代码制作了一个示例 repo:https://github.com/jaxoncreed/nextjs-content-type-test
这是重要的页面:

import Head from 'next/head'

export default function Home() {
return (
<div className="container">
<Head>
<title>Create Next App</title>
<link rel="icon" href="/favicon.ico" />
</Head>

<main>
<h1>Test App</h1>
</main>


</div>
)
}

export async function getServerSideProps({ req, res }) {
if (req.headers.accept === "application/json") {
res.setHeader('Content-Type', 'application/json')
res.write(JSON.stringify({ "dummy": "data" }))
res.end()
}
return {
props: {}, // will be passed to the page component as props
}
}

关于javascript - 使用 Serverless Next JS 在同一路由上的不同 Content-Type,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62840178/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com