我需要当前模块中其他模块功能的结果。我该怎么做。
模块1.js
var module2=require('./lib/module2');
module2.getValue();
现在我希望在 getValue 方法中返回“真”。我怎样才能到达这里。
在其他语言中,以下代码将起作用
var result=module2.getValue();
但是在 node.js 中,我们必须使用回调方法来获取该值。我该怎么做。
模块2.js
exports.getValue=function(){
console.log('getValue method called.');
return true;
};
最后我也改变了我的module1代码,但我没有得到这个结果。下面是我更新的module1代码
var module2=require('./lib/module2');
module2.getValue();
下面是我的确切代码
服务器.js
var express = require('express')
, http = require('http');
var app = express();
app.configure(function(){
app.use(express.static(__dirname + '/public'));
});
var server = http.createServer(app);
var io = require('socket.io').listen(server);
server.listen(8000);
var cradle=require('cradle');
new(cradle.Connection)('https://mydomain.iriscouch.com/', 5984, {
cache: true,
raw: false
});
cradle.setup({
host: 'mydomain.iriscouch.com',
cache: true,
raw: false
});
var c = new(cradle.Connection);
exports.connObj=c;
var notifications=require('./lib/Notifications');
var notificationId="89b92aa8256cad446913118601000feb";
console.log(notifications.getNotificatiosById(notificationId));
通知.js
var appModule=require('../server');
var connectionObj=appModule.connObj;
var db = connectionObj.database('notifications');
exports.getNotificatiosById=function(notificationId){
db.get(notificationId, function (err, doc) {
console.log(doc);//im getting output for this line while running server.js file
return true;
});
};