gpt4 book ai didi

javascript - 尝试将 Heroku 路由到 index.html

转载 作者:行者123 更新时间:2023-12-03 03:03:24 25 4
gpt4 key购买 nike

我正在使用 Heroku 部署我的网站,并使用 node.js。在我的index.js 文件中,本教程在response.end 中使用“Hello World”;但是我希望它显示我的index.html 文件。我该怎么做?

var http = require('http')

http.createServer(function (request, response){
response.writeHead(200, {"Content-Type": "text/plain"})
response.end("Hello World/n")
}).listen(process.env.PORT)

最佳答案

你可以这样做:
fs.readFile 读取您的 html 文件并将其转换为缓冲区。response.writeHead 定义响应头并指定内容类型为 html。response.end 发送文件并完成响应。

var http = require('http')
var fs = require('fs')

http.createServer(function (request, response) {
fs.readFile('index.html', function (err, file) {
response.writeHead(200, { "Content-Type": "text/html" })
response.end(file)
})
})
.listen(process.env.PORT)

关于javascript - 尝试将 Heroku 路由到 index.html,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47276551/

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