我有一个 JS 函数,它应该接受一个 id 作为参数,查找对象数组,然后返回对象。虽然它打印被调用的对象,但它不返回它。
我试过将对象分配给一个变量并返回这个变量,这没有帮助。
const events = require('../models/events');
const allEvents = events.allEvents;
const getConnections = function() {
return allEvents;
}
const getConnection = function(cid) {
allEvents.forEach(event => {
if(event.connectionId == cid) {
// console.log(event)
return event
}
});
}
module.exports = {getConnections, getConnection}
whileconsole.log(event)打印事件,return event返回 undefined。
这是调用代码:
const con = require('./connectionDB')
const data = con.getConnection(3)
console.log(data)
实际输出应该是事件详细信息。
holdtom
繁星淼淼
qq_遁去的一_1
相关分类