gpt4 book ai didi

javascript - Python 在连接到服务器时显示网页

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

我使用 JavaScript 构建了一个服务器,当您连接到它时,它会显示一个网页。服务器在连接时发送 htm 文件,使用

app.get('/', function (req, res) {
res.sendfile('index.htm');
});

Python中有类似的函数吗?

最佳答案

import SimpleHTTPServer
import SocketServer

PORT = 8000

Handler = SimpleHTTPServer.SimpleHTTPRequestHandler

httpd = SocketServer.TCPServer(("", PORT), Handler)

print "serving at port", PORT
httpd.serve_forever()

参见https://docs.python.org/2/library/simplehttpserver.html

关于javascript - Python 在连接到服务器时显示网页,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24744125/

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