gpt4 book ai didi

javascript - 成功 ? 'sent' : 'failed' defaults to 'sent' for success = null. 为什么?

转载 作者:行者123 更新时间:2023-11-30 08:11:55 26 4
gpt4 key购买 nike

我正在尝试从 nodeJS 发送电子邮件(使用 nodemailer 库),目前我在整个邮寄过程中遇到了一些超时问题。那不是我需要帮助的问题。我确实需要帮助的问题是,当它到达日志记录部分时,成功将为空,并且 sole.log('Message' + 使整个 console.log 语句输出“已发送”。没有“消息”,没有失败.

知道为什么吗?

nodemailer.send_mail(
// e-mail options
{
to:"alexsb92@gmail.com",
sender:"alexsb92@gmail.com",
subject:"node_mailer test email",
html:'<p><b>Hi,</b> how are you doing?</p>',
body:'Hi, how are you doing?'
},
// callback function
function(error, success){
console.log('Message ' + success ? 'sent' : 'failed');
}
);

最佳答案

运算符优先级?尝试:

'Message ' + (success ? 'sent' : 'failed')

关于javascript - 成功 ? 'sent' : 'failed' defaults to 'sent' for success = null. 为什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9067804/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com