-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
89 lines (73 loc) · 1.78 KB
/
app.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
const express = require('express')
const path = require('path');
const mongoose = require('mongoose');
const bodyParser = require('body-parser')
const app = express()
app.use(bodyParser.urlencoded({ extended: false }))
mongoose.connect('mongodb://helmisatria:[email protected]:36967/product-trial', { useNewUrlParser: true }, (error) => {
if (error) {
console.log('Ada error euy')
return
}
console.log('Berhasil connect ke DB')
})
const Mahasiswa = mongoose.model('Mahasiswa', {
nama: String,
nim: String
})
// ini buat render file ejs
app.set('view engine', 'hbs');
// ini buat change default folder views
app.set("views", path.join(__dirname, "halamans"));
app.get('/', (req, res) => {
let variabel = {
us: 'Ini dari variabel'
}
//
res.render('index', variabel)
})
app.get('/mahasiswa', (req, res) => {
Mahasiswa
.find() // SELECT * FROM MAHASISWA
.then((allMahasiswa) => { // KALAU GA ERROR, allMahasiswa itu hasil SELECT nya
res.send(allMahasiswa)
})
.catch(error => { // KALAU ERROR, variabel error akan ada valuenya
res.send(error)
})
})
app.get('/mahasiswa/baru', (req, res) => {
// Get semua mahasiswa
// Tampilin di mahasiswaBaru.ejs
Mahasiswa
.find()
.then(allMahasiswa => {
console.log(allMahasiswa)
res.render('mahasiswaBaru', {
mhs: allMahasiswa
})
})
.catch((error) => {
res.send(error)
})
})
// Create Mahasiswa
app.post('/mhs', (req, res) => {
console.log(req.body)
Mahasiswa.create({
nama: req.body.namaMhs
})
.then((hasil) => {
console.log(hasil)
res.redirect('/mahasiswa')
})
.catch((error) => {
console.log(error);
})
})
app.get('*', (req, res) => {
res.send('Page tidak ketemu')
})
app.listen(8000, () => {
console.log('8000')
})