Python Flask 中的“GET / HTTP/1.1”404

问题描述 投票:0回答:2

这是我的代码,我在浏览器上遇到错误是在服务器上找不到请求的 URL。如果您手动输入 URL,请检查拼写并重试。我的文件名是app.py

from flask import Flask, render_template, json, request

from datetime import datetime
from threading import Timer

app = Flask(__name__)

x=datetime.today()
y=x.replace(day=x.day+1, hour=12, minute=52, second=0, microsecond=0)
delta_t=y-x

secs=delta_t.seconds+1

def hello_world():
print "hello world"
#...

t = Timer(secs, hello_world)
t.start()


if __name__ == "__main__":
app.run(port=5004)
mysql python-3.x export-to-excel
2个回答
4
投票

hello_world
函数之前添加
@app.route('/')
,使您的代码如下所示,

@app.route('/')
def hello_world():
    print "hello world"

0
投票

sajadsajadsajadaammww882232151

© www.soinside.com 2019 - 2024. All rights reserved.