Heya! This book is currently only available in German. If you'd like to be notified about the upcoming English version, please subscribe here!

Code: listing-02.07.2

function (head, req) {
    start({'headers': {'content-type': 'text/html'}});
    
    send('<table><tr><td>Typ</td><td>MwSt.</td> \\
      <td>Datum</td><td>Wert</td></tr>');
    
    while (var row = getRow()){
      send('<tr><td>' + row.key[0] + '</td> \\
        <td>' + row.key[1] + '</td> \\
        <td>' + row.key[2] + '</td> \\
        <td>' + row.value + '</td>');
    };
    
    send('</tr></table>');
  }

Wieder alle anzeigen…