我遇到了Promise的问题,当我尝试检索它所说的Promise { <pending> }
数据时,我已经找到了一些有关它的信息,但我无法理解如何结束它。
如果有人可以帮助我,我将不胜感激。
提前致谢
/bucket.js
'use strict'
const connection = require('../server/models'),
oracledb = require('oracledb'),
conexion = oracledb.getConnection(connection)
oracledb.outFormat = oracledb.OBJECT
module.exports = (data) => {
console.log("RES: ", filter(data));
return filter(data)
}
const filter = (value) => {
return conexion
.then(con => {
return con.execute(
`SELECT id_application, name, description, creation_date ` +
`FROM application `
).then(bucket => {
return con.execute(
`SELECT id_definition, id_application, field_name_original,
field_name_new, column_name, position, id_type_data,
field_size, creation_date, description, filter, visible ` +
`FROM definition ` +
`WHERE id_application in (${getApp(value.data)}) ` +
`AND ${value['search']} = '${value['value']}' `
).then(definitions => { return creaJSON(bucket, definitions) } )
.catch(error => { return {"error": error} })
})
.catch(error => { return {"error": error} })
})
.catch(error => { return {"error": error} })
}
const getApp = (value) => {
return value.map(obj => {
return `'${obj.ID_APPLICATION}'`
})
}
const creaJSON = (buckets, definitions) => {
var df = new Array()
buckets['rows'].map(obj => {
definitions['rows'].map(def => {
if(obj['ID_APPLICATION'] == def['ID_APPLICATION']) df.push(def)
})
obj['Definitions'] = df
df = []
})
return buckets.rows
}
已更新
我的错误只出现在上面的代码中。我正在使用套接字,而且还有Bergi的答案,我无法在客户端做出回应。我有下一个代码:
socket.on('bucketVisibleT', (data) => {
buckets = {data:data,search:'VISIBLE',value:'T'}
io.sockets.emit('bucketVisibleFs', require('./bucket')(buckets))
})
所以我不得不改变下一个,现在我的回复在我的客户端。
socket.on('bucketVisibleT', (data) => {
buckets = {data:data,search:'VISIBLE',value:'T'}
require('./bucket')(buckets).then(res => {
io.sockets.emit('bucketVisibleTs', res)
})
})
我道歉,因为我没有对我的问题做出很好的解释,但我认为这是我的第一个代码
答案 0 :(得分:0)
filter
会返回一个承诺,因此与其他承诺返回函数一样,如果您想对结果执行某些操作,则需要对其进行then
调用:{/ p>
module.exports = (data) =>
filter(data).then(res => {
console.log("RES: ", res);
return res;
});