我有一个非常简单的问题,我似乎无法理解。
我有一个简单的 Flask 应用程序。我想从磁盘读取一个 XML 文件并将其发送给用户,但 Flask 不断返回 404。这是我的代码:
@app.route('/update.php')
@app.route('/update')
def send_sparkle_xml():
""" Send the Sparkle XML file if someone does a GET on the update URL. """
return send_from_directory(directory='files', filename='updates.xml')
updates.xml
存在于files
与显示的脚本同级的目录中。我一直收到404,不知道为什么。