我在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。如果没有,请点击链接。
我在这里做错了什么?如何将页面重定向到另一个页面?