-
Notifications
You must be signed in to change notification settings - Fork 1
/
prod.server.js
57 lines (46 loc) · 1.09 KB
/
prod.server.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
const express = require('express')
const cors = require('cors')
const app = express()
const appData = require('./data.json')
const seller = appData.seller
const goods = appData.goods
const ratings = appData.ratings
const router = express.Router()
var whitelist = ['https://www.lizhigang.cn']
var corsOptions = {
origin: function (origin, callback) {
if (whitelist.indexOf(origin) !== -1) {
callback(null, true)
} else {
callback(new Error('Not allowed by CORS'))
}
}
}
router.get('/seller', cors(corsOptions), function (req, res) {
res.json({
errno: 0,
data: seller
})
})
router.get('/goods', cors(corsOptions), function (req, res) {
res.json({
errno: 0,
data: goods
})
})
router.get('/ratings', cors(corsOptions), function (req, res) {
res.json({
errno: 0,
data: ratings
})
})
app.use('/api', router)
app.use(express.static('./dist'))
const port = process.env.PORT || 8900
module.exports = app.listen(port, function (err) {
if (err) {
console.log(err)
return
}
console.log('Listening at http://localhost:' + port + '\n')
})