-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
41 lines (34 loc) · 1.11 KB
/
index.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
var express = require("express");
var app = express();
const handlebars = require('express-handlebars')
const bodyParser = require('body-parser')
const Post = require('./models/Post')
//Config
//Template Engine
app.engine('handlebars',handlebars({defaultLayout: 'main'}))
app.set('view engine', 'handlebars')
//Body Parser
app.use(bodyParser.urlencoded({extended: false}))
app.use(bodyParser.json())
//Rotas
app.get('/', function(req, res){//order abaixo é para ordenar de modo decrescente
Post.findAll({order: [['id', 'DESC']]}).then(function(posts){//.all foi substituido por findAll()
res.render('home', {posts: posts})
})
})
app.get('/cad', function(req, res){
res.render('formularios')
})
app.post('/add', function(req,res){
Post.create({
titulo: req.body.titulo,
conteudo: req.body.conteudo
}).then(function(){
res.redirect('/')
}).catch(function(erro){
res.send("Houve um erro: "+erro)
})
})
app.listen(8081, function(){
console.log("Servidor Rodando na url http://localhost:8081");
});