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.
$report = new StiReport();
$report->engine = StiEngineType::ServerNodeJS;
$report->process();
$report->loadFile('reports/SimpleList.mrt', true);
$result = $report->render();
if ($result)
$document = $report->saveDocument();
else
$message = $report->nodejs->error;engine = StiEngineType::ServerNodeJS — switches rendering to the embedded Node.js engine, so it runs entirely on the server.loadFile('...', true) — loads the template for server-side rendering.render() — renders the report on the server and returns success or failure.saveDocument() — returns the rendered document; nodejs->error holds any engine error.engine = StiEngineType::ServerNodeJS runs the rendering in Node.js on the server; saveDocument() returns the rendered document. This is the basis for scheduled or headless report generation.