Quellcodebibliothek Statistik Leitseite products/sources/formale Sprachen/C/Firefox/docshell/test/browser/   (Browser von der Mozilla Stiftung Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 417 B image not shown  

Quelle  file_basic_multipart.sjs   Sprache: unbekannt

 
Spracherkennung für: .sjs vermutete Sprache: Unknown {[0] [0] [0]} [Methode: Schwerpunktbildung, einfache Gewichte, sechs Dimensionen]

"use strict";

function handleRequest(request, response) {
  response.setHeader(
    "Content-Type",
    "multipart/x-mixed-replace;boundary=BOUNDARY",
    false
  );
  response.setStatusLine(request.httpVersion, 200, "OK");

  response.write(`--BOUNDARY
Content-Type: text/html

<h1>First</h1>
Will be replaced
--BOUNDARY
Content-Type: text/html

<h1>Second</h1>
This will stick around
--BOUNDARY
--BOUNDARY--
`);
}

[ Dauer der Verarbeitung: 0.32 Sekunden  ]