第一次用python的flask框架开发web,在浏览器中输入http://127.0.0.1:5000/可以正常访问,但是输入自己的IP http://192.168.1.105:5000/ 就访问失败了,报错"dial tcp 192.168.1.105:5000: connectex: No connection could be made because the target machine actively refused it."
找资料排查后得知,app.run() 默认host参数指定为127.0.0.1,需要改为0.0.0.0,改完之后访问正常。如下:
app.run(host="0.0.0.0")
找资料排查后得知,app.run() 默认host参数指定为127.0.0.1,需要改为0.0.0.0,改完之后访问正常。如下:
app.run(host="0.0.0.0")