我有一个文件, connection.js 我想在另一个文件中使用。如何在另一个文件中使用此文件来插入和更新数据库。 例如,我有另一个名为 item.js 的文件,我想在其中将项目详细信息添加到数据库中。
var mongodb = require('mongodb');
module.exports = function() {
this.getConnection = function(callback) {
var MongoClient = mongodb.MongoClient;
var url = 'mongodb://localhost:27017/ShoppingCart';
console.log(url);
MongoClient.connect(url, function(err, db) {
if (err) {
console.log('Unable to connect to the mongoDB server. Error:', err);
return;
} else {
console.log('Connection established to', url);
return callback;
} //else
}); //MongoClient.connect
}; //Connection
}; //constructor
item.js
在此文件中,addItem
函数接受我想要存储在数据库中的JSON对象。为此,我需要连接到数据库,然后插入结果,但我不了解如何连接到数据库。
我尝试了这个,但它不起作用:
/**
* Shopping Cart
* @author Sunil Hirole
* @Date 15-july-2015
* This is an e-commerce application for purchasing items
*/
var prompt = require('prompt');
var item = require('../models/itemArray.js');
var Connection = require('../util/con.js');
/**
* Item class is a model class
* It contains addItem,editItem,showItem,deleteItem functions
*/
function Item(){
this.id;
this.name;
this.price;
}//Item
/**
*addItem Function
**/
Item.prototype.addItem = function(result){
var connection = new Connection();
var db = connection.getConnection(function(err,db){});
var Collection = db.collection('ItemsArray');
Collection.insert([result], function(err, result) {
if (err) {
console.log(err);
return;
}
else {
return result;
}
//Close connection
db.close();
});
return(result);
}//addItem
答案 0 :(得分:2)
您好,只需尝试在您的行中导出回调函数
module.exports = function(callback) {
var MongoClient = mongodb.MongoClient;
var url = 'mongodb://localhost:27017/ShoppingCart';
MongoClient.connect(url, callback)
而非function(err, db)
使用回调MongoClient.connect(url, callback);
后者在 item.js 中使用连接var
var connection = require('../util/con.js');
// the rest of the file here
connection(function(err,db){
db.collection('ItemsArray').
insert([result], function(err, result) {
if (err) {
console.log(err);
return;
}
else {
return result;
}
//Close connection
});