-
Notifications
You must be signed in to change notification settings - Fork 0
/
category.js
76 lines (65 loc) · 1.63 KB
/
category.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
//npm install tingodb
var Db = require('tingodb')().Db;
var db = new Db('database', {});
//https://github.com/sergeyksv/tingodb/blob/master/test/crud-test.js
// category collection
var categoryCollection = db.collection("category");
//insertCategory({categoryname:'category 4'});
//updateCategory({categoryid : 4, categoryname: "category 4"});
//removeCategory(5);
/*getCategory(3,function(err,data) {
if(err) {
console.log("errror " , err);
return;
}
console.log(data);
});*/
/*getAllCategory(function(err,data) {
if(err) {
console.log("errror " , err);
return;
}
console.log(data);
});*/
module.exports =
{
insertCategory : function(categoryObj,callback) {
console.log(categoryObj);
categoryCollection.insert(categoryObj,
function(err, results) {
console.log(err, results);
if(callback)
callback(err,results)
});
},
updateCategory : function(categoryObj,callback) {
categoryCollection.update(
{ "_id" : categoryObj.categoryid },
{ $set: { categoryname: categoryObj.categoryname } },
function(err, results) {
if(callback)
callback(err,results)
});
},
removeCategory : function(categoryid,callback) {
console.log(categoryid);
categoryCollection.remove(
{ "_id" : categoryid },
function(err, results) {
if(callback)
callback(err,results)
});
},
getAllCategory : function(callback){
categoryCollection.find().toArray(function(err, docs) {
if(callback)
callback(null,docs)
});
},
getCategory : function(categoryid,callback){
categoryCollection.findOne({_id : categoryid }, function(err, doc) {
if(callback)
callback(null,doc);
});
}
}