Flask重定向无法在heroku应用程序上运行

时间:2018-06-03 08:25:23

标签: javascript google-chrome heroku web flask

我在Heroku app上使用flask。前端使用html和js构建并以chrome运行。我正在尝试使用以下代码发送重定向:

@app.route('/thanks')
def thanks():
    return "thanks"


@app.route('/upload', methods=['POST'])
def save_photos():
    for file in request.files.keys():
        createFileInS3(file, "a", request.files[file])

    return redirect("www.ynet.com", 300)

并在chrome调试控制台中获取以下语句

  

  重定向......

重定向...

你应该是   自动重定向到目标URL:www.ynet.com。如果没有,请点击链接。

我在这里做错了什么?如何将页面重定向到另一个页面?

0 个答案:

没有答案