0
我正在使用節點RED作爲項目,並試圖使用調用時返回未來的函數。使用節點RED中的功能塊的期貨
我只想確認期貨是否從功能塊中工作?以下是我試過的代碼:
var Influx = context.global.influx;
const hist = new Influx.InfluxDB({
host:'external.server',
port:8086,
username:'user',
password:'password',
database: 'histories',
});
hist.getMeasurements().then(names => {
node.send({payload:names});
});
return null;