Skip to content

Commit 32bae6c

Browse files
committed
db.json upload
1 parent c300155 commit 32bae6c

File tree

8 files changed

+1314
-53
lines changed

8 files changed

+1314
-53
lines changed

README.md

+22
Original file line numberDiff line numberDiff line change
@@ -74,3 +74,25 @@ You are required to submit the following:
7474

7575
- - -
7676
© 2019 Trilogy Education Services, a 2U, Inc. brand. All Rights Reserved.
77+
78+
79+
80+
81+
Notes
82+
83+
## req.body contiene 'parámetros' que se envían desde el cliente como parte de una solicitud POST. Ver la API .
84+
85+
// POST user[name]=tobi&user[email]=[email protected]
86+
req.body.user.name
87+
// => "tobi"
88+
89+
req.body.user.email
90+
91+
92+
// POST { "name": "tobi" }
93+
req.body.name
94+
// => "tobi
95+
96+
97+
## body-parser extrae toda la parte del cuerpo de una secuencia de solicitud entrante y la expone en req.body.
98+
Para leer los datos HTTP POST, tenemos que usar el módulo de nodo "body-parser". body-parser es una pieza de middleware express que lee la entrada de un formulario y la almacena como un objeto javascript accesible a través dereq.body

app.js

+22-39
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,13 @@ const path = require ("path");
44
const fs = require ("fs");
55
let bodyParser = require ("body-parser");
66

7-
8-
97
let app = express();
10-
let PORT = 3000;
11-
8+
let PORT = process.env.PORT || 3000;
129

10+
app.use(express.static(__dirname + '/public/'));
11+
app.use(express.urlencoded({ extended: true }));
12+
app.use(express.json());
1313
//Data
14-
1514
let characters = [{
1615
routeName: "yoda",
1716
name: "Yoda",
@@ -31,52 +30,36 @@ let PORT = 3000;
3130
age: 60,
3231
forcePoints: 1350
3332
}];
34-
35-
3633
//GET method route
3734
app.get('/', function (req, res){
38-
res.send("Welcome");
35+
// res.sendFile(path.join(__dirname, '/db/db.json'))
36+
// res.send('welcome');
3937
});
40-
app.get('/api/notes', function(req, res){
41-
res.json("notes")
38+
app.get('/api/notes/', function(req, res){
39+
res.sendFile(path.join(__dirname, '/public/notes.html'))
4240
});
4341
app.get('/index', function(req, res){
4442
res.json("index")
4543
});
46-
47-
4844
// POST method route, send the data in JSON format
49-
app.post('/api/notes', function (req, res) {
50-
res.json()
45+
app.post('/api/notes/', function (req, res) {
46+
console.log('llega hasta 1')
5147

52-
res.send('POST request to the homepage');
53-
54-
//req.body
55-
});
56-
57-
58-
48+
var note = req.body;
49+
filePath = __dirname + '/db/db.json';
50+
fs.appendFile(filePath, JSON.stringify(note), function(err) {
51+
if (err) { throw err }
52+
res.status(200).json({
53+
message: "File successfully written"
54+
})
55+
})
56+
});
5957
//Delete
6058
app.delete('/api/notes/:id', function (req, res) {
6159
res.send('DELETE request to homepage')
62-
6360
//req.query
6461
})
65-
66-
67-
68-
6962
//Listener
70-
var PORT = process.env.PORT || 3000;
71-
app.listen(port, function() {
72-
console.log('Server started on port ' + port);
73-
});
74-
75-
76-
77-
78-
79-
80-
81-
82-
63+
app.listen(PORT, function() {
64+
console.log('Server started on port ' + PORT);
65+
});

db.json

Whitespace-only changes.

db/db.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
[{"title":"Test Title","text":"Test text"}]
1+
[{"title":"Test Title","text":"Test text"}]{"title":"ASDAD","text":"ASDASDA"}{"title":"ASDAD","text":"ASDASDA"}{"title":"asdsd","text":"asdasdasd"}{"title":"asdsd","text":"asdasdasd"}{"title":"asdas","text":"adasdad"}{"title":"asdas","text":"adasdad"}{"title":"adsasd","text":"adasdasdsa"}{"title":"adsasd","text":"adasdasdsa"}{"title":"asdfasdf","text":"asdfasdf"}{"title":"asdfasdf","text":"asdfasdf"}

0 commit comments

Comments
 (0)