无法console.log Woo-commerce .get请求全局响应
在Node.js中 1.我连接到WooCommerce-api 2.我提出一个.get请求 3.我得到响应并将其记录在本地
但无法通过控制台将其记录到外部(全局)
我已经尝试过全局。使响应成为全局变量并且不起作用
WooCommerce.get("products/7521", (err, data, res) => {
var obj = JSON.parse(res);
console.log(obj); // can log it in the terminal
global.globalObj = obj; // trying to make it a global var
});
console.log(obj); // undefined
console.log(globalObj);
console.log();`
我希望能够在代码的其他地方使用该响应