-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhandlebarsForms.js
53 lines (44 loc) · 1.25 KB
/
handlebarsForms.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
42
43
44
45
46
47
48
49
50
51
52
53
var express = require('express');
var app = express();
var handlebars = require('express-handlebars').create({defaultLayout:'main'});
var bodyParser = require('body-parser');
app.use(bodyParser.urlencoded({ extended: false }));
app.use(bodyParser.json());
app.engine('handlebars', handlebars.engine);
app.set('view engine', 'handlebars');
app.set('port', 3000);
app.get('/', function(req, res){
res.render('home');
});
app.get('/form-results', function(req,res){
var qParams = [];
for (var p in req.query){
qParams.push({'name':p, 'value':req.query[p]});
}
var context = {};
context.dataList = qParams;
context.methodType = req.method;
res.render('form-results', context);
});
app.post('/form-results', function(req,res){
var qParams = [];
for (var p in req.body){
qParams.push({'name':p, 'value':req.body[p]});
}
var context = {};
context.dataList = qParams;
context.methodType = req.method;
res.render('form-results', context);
});
app.use(function(req,res){
res.status(404);
res.render('404');
});
app.use(function(err,req,res,next){
console.error(err.stack);
res.status(500);
res.render('500');
});
app.listen(app.get('port'), function(){
console.log('Express started on http:localhost:' + app.get('port') + '; press Ctrl-C to terminate.');
});