Changes between Version 2 and Version 3 of skript/express
- Timestamp:
- Jun 13, 2019, 10:07:55 AM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
skript/express
v2 v3 77 77 #!CodeExample 78 78 ## title = GET-Handler mit Express 79 ## repo = Web_Quellcode_FP80 ## path = vorlesung/code/VL10-rest_express/hello1.js79 ## repo = vorlesung 80 ## path = code/VL10-rest_express/hello1.js 81 81 #!javascript 82 82 }}} … … 88 88 #!CodeExample 89 89 ## title = Differenzierung nach Pfaden 90 ## repo = Web_Quellcode_FP91 ## path = vorlesung/express/hello2.js@36090 ## repo = vorlesung 91 ## path = code/VL10-rest_express/hello2.js 92 92 ## regex = "// Handler für GET-Requests" 93 93 ## lines = 17 … … 176 176 }}} 177 177 178 Nunmehr kann direkt auf das `body` Objekt zugegriffen werden (vollständiges Beispiel in [[source: Web_Quellcode_FP/vorlesung/express/shop_express.js|shop_express.js]]):178 Nunmehr kann direkt auf das `body` Objekt zugegriffen werden (vollständiges Beispiel in [[source:/vorlesung/code/VL10-rest_express/shop.js|shop.js]]): 179 179 180 180 {{{ … … 269 269 == Beispiel REST-Interface mit Express == 270 270 271 In der Datei [[source: Web_Quellcode_FP/vorlesung/express/shop_express.js|shop_express.js]] findet sich eine Express-basierte Implementierung des im vorigen Kapitel vorgestellten REST-Interfaces, wobei die URLs unverändert sind. Der zugehörige HTML/JS-Client befindet sich im Verzeichnis [[source:Web_Quellcode_FP/vorlesung/express/app|app]].271 In der Datei [[source:vorlesung/code/VL10-rest_express/shop.js|shop.js]] findet sich eine Express-basierte Implementierung des im vorigen Kapitel vorgestellten REST-Interfaces, wobei die URLs unverändert sind. Der zugehörige HTML/JS-Client befindet sich im Verzeichnis [[source:vorlesung/code/VL10-rest_express/app|app]].