公共函数中定义方法
TopClient.prototype.execute = function (apiname,params,callback) {
this.invoke('post',apiname, params, [util.getApiResponseName(apiname)], [], callback);
};
云函数中调用方法
exports.main = async (event, context) => {
client.execute('taobao.time.get', {}, function(error, response) {
console.log('ababab')
if (!error) console.log(response);
else console.log(error);
})
};
运行云函数,无法得到控制台输出的任何值,没有进入回调方法
1 个回复
DCloud_uniCloud_WYQ
使用util模块的promisify处理一下execute方法