我使用SOAP npm尝试获取所有客户,但现在我在用户列表控制台日志中获得 undefined
var soap = require(' soap');
soap.createClient(url,function(err,client){
client.login(args, function (err, session, client) {
console.log(session);
session = session.result;
client.customerCustomerList(session , function (err, list){
if(!err){
console.log(client);
console.log('User List', list);
}else{
console.log(err);
}
});
});
});
答案 0 :(得分:0)
我还没有为node.js找到可靠的soap模块。花了一些时间尝试在npm上调试或修改流行的那些,我接受了这个答案中提供的建议https://stackoverflow.com/a/22897376。到目前为止,它对我来说效果很好。
答案 1 :(得分:0)
没关系。我错过了一些必要的参数。