我正在帮助使用 Discord 机器人,并且正在使用 node.js。我需要从两个单独的 json 提要中获取结果,并为此使用 request-promise。
tableRequest().then(function(val) {
console.log(val);
}).catch(function(err) {
console.err("Something went wrong");
});
playersRequest().then(function(val) {
console.log(val);
}).catch(function(err) {
console.err("Something went wrong");
});
每个函数的顶部看起来像这样。
function tableRequest(){
return new Promise(function(resolve, reject){
request('http://xxx.xxx.xxx.xxx/table', function (error, response, body) {
当我运行我的代码时,两组数据都很好地记录到控制台,但从我读过的内容来看,这并不正确。然后我如何在val
其他地方使用这两个?
这不是我的强项。我是一个 Drupal 人。谢谢,如果你能帮忙。