我写了这个程序:
import web
urls = (
'/(.*)', 'hello'
)
app = web.application(urls, globals())
class hello:
def GET(self, name):
if not name:
name = 'World'
return 'Hello, ' + name + '!'
if __name__ == "__main__":
app.run()
然后跑了。它没有任何错误并给出了这个地址" http ://0.0.0.0:8080
",但是当我打开这个页面时它说:
"""无法连接
Firefox无法在0.0.0.0:8080建立与服务器的连接。"""
答案 0 :(得分:0)
这可能会有所帮助:
Firefox无法在0.0.0.0:8080建立与服务器的连接。