-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
81 lines (54 loc) · 1.68 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
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
var mongoose = require('mongoose');
var express = require('express');
var bodyParser = require('body-parser');
var app = express();
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({extended:true}));
//app.use(mongoose);
mongoose.connect('mongodb://beacondb:[email protected]:27017,nodecluster-shard-00-01-ldy3x.mongodb.net:27017,nodecluster-shard-00-02-ldy3x.mongodb.net:27017/test?ssl=true&replicaSet=nodecluster-shard-0&authSource=admin&retryWrites=true',{
useNewUrlParser:true
});
const schema = mongoose.Schema({
discount:Number,
name: String,
photo:String,
price:Number,
region:String
});
const Product = mongoose.model('schema',schema);
app.post('/addData',(req,res)=>{
const product = new Product({
discount:req.body.discount,
name: req.body.name,
photo:req.body.photo,
price:req.body.price,
region:req.body.region
});
product.save().then(result => {
res.status(201).json({
message:"created successfully",
createdProduct:product
});
}).catch(err => {
res.status(500).json({error:err});
})
});
app.get('/getData', (req,res,next) =>{
Product.find().then(result =>
{
res.status(200).json(result);
}).catch(error =>{
res.status(500).json({err:error});
})
});
app.listen(9800, () => {
console.log("server is running at 9800");
});
app.get('/getproductdata/:region',(req,res) =>{
var type = req.params.region;
Product.find({"region":type}).then(result =>{
res.status(200).json(result);
}).catch(error =>{
res.status(500).json({err:error});
});
});