gpt4 book ai didi

Python Bottle 网站在网络上可见吗?

转载 作者:行者123 更新时间:2023-12-01 04:14:06 27 4
gpt4 key购买 nike

有没有办法让我的网站可以通过我所连接的网络访问?

from bottle import route, run, template

@route('/hello/<name>')
def index(name):
return template('<b>Hello {{name}}</b>!', name=name)

run(host='localhost', port=8080)

最佳答案

@fukanchik注释中解释了,您必须在运行命令中使用 host='0.0.0.0' 来让 Bottle 监听系统中所有可用的 ip。

from bottle import route, run, template

@route('/hello/<name>')
def index(name):
return template('<b>Hello {{name}}</b>!', name=name)

run(host='0.0.0.0', port=8080)

欲了解更多信息,您可以查看这个问题:whats the difference between ip address 0.0.0.0 and 127.0.0.1

关于Python Bottle 网站在网络上可见吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34539487/

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