Cloud
Cloud-Dienstleistung für schnelle und effektive Analyse und Visualisierung von Daten für Ihr Business ohne eigene Applikationen zu erstellen oder zu programmieren.
viewer = StiViewer()
# Return the processed request (data, events) to the client
if viewer.processRequest(request):
return viewer.getFrameworkResponse()
report = StiReport()
report.loadFile(url_for('static', filename='reports/SimpleList.mrt'))
viewer.report = report
return viewer.getFrameworkResponse()viewer.processRequest(request) — handles the viewer's AJAX callbacks; when it returns true, return its response.report.loadFile(url) — emits JS to load the template; the report loads in the browser, not on the server.viewer.getFrameworkResponse() — returns the ready HTML page (or component) for Flask to serve.