-
Notifications
You must be signed in to change notification settings - Fork 2
/
03.post-plain.js
41 lines (35 loc) · 1005 Bytes
/
03.post-plain.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*
Keyrt með:
node 03.post-plain.js
Keyrir upp express vefþjón á http://localhost:3000 sem bíður upp á að fylla út
form með texta og skrá sem sent er með text/plain á /post
App notar straum til að lesa úr request
Birtir innslegin gögn ásamt heiti á skrá.
*/
import express from 'express';
const app = express();
app.get('/', (req, res) => {
res.send(/* html */ `
<form method="post" action="/post" enctype="text/plain">
<input type="text" name="data">
<input type="file" name="file">
<button>Senda</button>
</form>
`);
});
app.use((req, res, next) => {
// ATH almennt notum við ekki þessa aðferð,
// heldur body-parser middleware
const chunks = [];
req.on('data', (chunk) => chunks.push(chunk));
req.on('end', () => {
req.body = chunks.join();
next();
});
});
app.post('/post', (req, res) => {
res.send(`POST gögn:\n${req.body}`);
});
app.listen(3000, () => {
console.log('Server running at http://127.0.0.1:3000/');
});