TypeError:soap.createClientAsync不是函数

时间:2017-11-14 11:36:16

标签: node.js soap

使用soap npm包时出现此错误。 应用程序内置于Meteor。

以下是代码:

soap.createClientAsync(url).then((client) => {
    return client.someMethod(soapArgs, function(err, result) {
        if (result) {
            console.log('result');
            console.log(result);
        }
    });
 }).then((result) => {
     console.log('soap.createClientAsync');
     console.log(result);
});

0 个答案:

没有答案