Jak obsługiwać statyczne pliki w kolbie
Więc to jest żenujące. Mam aplikację, którą zrzuciłem razemFlask
i na razie obsługuje tylko jedną statyczną stronę HTML z pewnymi linkami do CSS i JS. I nie mogę znaleźć gdzie w dokumentacjiFlask
opisuje zwracanie plików statycznych. Tak, mógłbym użyćrender_template
ale wiem, że dane nie są templatowane. Myślałemsend_file
luburl_for
było właściwe, ale nie mogłem ich zmusić do pracy. W międzyczasie otwieram pliki, czytam zawartość i ustawiam aResponse
z odpowiednim typem mimetycznym:
import os.path
from flask import Flask, Response
app = Flask(__name__)
app.config.from_object(__name__)
def root_dir(): # pragma: no cover
return os.path.abspath(os.path.dirname(__file__))
def get_file(filename): # pragma: no cover
try:
src = os.path.join(root_dir(), filename)
# Figure out how flask returns static files
# Tried:
# - render_template
# - send_file
# This should not be so non-obvious
return open(src).read()
except IOError as exc:
return str(exc)
@app.route('/', methods=['GET'])
def metrics(): # pragma: no cover
content = get_file('jenkins_analytics.html')
return Response(content, mimetype="text/html")
@app.route('/', defaults={'path': ''})
@app.route('/<path:path>')
def get_resource(path): # pragma: no cover
mimetypes = {
".css": "text/css",
".html": "text/html",
".js": "application/javascript",
}
complete_path = os.path.join(root_dir(), path)
ext = os.path.splitext(path)[1]
mimetype = mimetypes.get(ext, "text/html")
content = get_file(complete_path)
return Response(content, mimetype=mimetype)
if __name__ == '__main__': # pragma: no cover
app.run(port=80)
Ktoś chce podać do tego przykładowy kod lub adres URL? Wiem, że to będzie proste.