英文:
Is it possible to write a route in NextJS using Golang?
问题
在Next.js中使用Golang编写路由是可能的吗?
就像文件夹结构如下:
-
pages
-
api
- name.go
-
然后我们可以查询/api/name并获得响应吗?
英文:
is it possible to write a route in NextJS using Golang?
Like the folder structure would be:
-
pages
-
api
- name.go
-
And we can query /api/name and get a response back?
答案1
得分: 0
这是NextJS不提供的功能。但是如果你将页面托管在Vercel上,你可以使用他们的无服务器函数的Go运行时来实现相同的功能。
你可以通过将文件路径设置为/api/name.go
而不是/pages/api/name.go
来实现这一点。
英文:
This is not something NextJS provides. But if you are hosting your page on Vercel, you can use their Go Runtime for Serverless Functions to achieve the same thing.
You can do this by having the file path be /api/name.go
instead of /pages/api/name.go
.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论