如何解决创建一个if-elseif-else语句Zapier代码
您好,我正在尝试通过if then语句检查Zappy她的JavaScript代码块中的某些输入数据。而且我目前无法使用,因为我传入了'Next Day'
并且没有得到下一个日期的日期字符串。希望您有任何建议。
const inputData = {'date': '2020-08-31T22:36:27Z','delivery': 'Next Day'};
if (inputData.delivery == 'Next day') {
const today = new Date(inputData.date)
const tomorrow = new Date(today)
tomorrow.setDate(tomorrow.getDate() + 1)
const d = tomorrow
output = {d}
} else if (inputData.delivery == 'Same Day') {
const samedayoutput = inputData.date
const d = samedayoutput
output = {d}
} else {
var d = new Date(inputData.date);
d.setDate(d.getDate() + (1 + 7 - d.getDay()) % 7);
output = {d}
}
解决方法
为我工作。
const inputData = {'date': '2020-08-31T22:36:27Z','delivery': 'Next Day'};
debugger;
if (inputData.delivery == 'Next Day') {
const today = new Date(inputData.date)
const tomorrow = new Date(today)
tomorrow.setDate(tomorrow.getDate() + 1)
const d = tomorrow
output = {d}
} else if (inputData.delivery == 'Same Day') {
const samedayoutput = inputData.date
const d = samedayoutput
output = {d}
} else {
var d = new Date(inputData.date);
d.setDate(d.getDate() + (1 + 7 - d.getDay()) % 7);
output = {d}
}
console.log(output);
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。