【发布时间】:2020-02-23 13:31:47
【问题描述】:
我想以特定的方式播放一首特别的歌曲。
let speechText = ``;//Happy ${currentYear - year}th birthday!`;
if (currentDate.getTime() !== nextBirthday.getTime()) {
if(currentDate.getTime() > nextBirthday.getTime()){
speechText = `Ciao Alberto! Hai già festeggiato il tuo compleanno quest'anno!!, Ti sei divertito?`;
} else {
const diffDays = Math.round(Math.abs((currentDate.getTime() - nextBirthday.getTime())/oneDay));
speechText = `Ciao Alberto! Mancano ${diffDays} giorni al tuo primo compleanno!! Sei emozionato?`;
//speechText = `Welcome back. It looks like there are ${diffDays} days until your ${currentYear - year}th birthday.`
}
} else {
// PLAY THAT SONG
}
如果可能的话,你能在正确的文档上给我打电话吗? 谢谢。
【问题讨论】:
-
“特定方式”是什么意思?你想在某人生日的时候播放一首歌吗?
-
是的,我想在 ELSE 语句中播放一首歌(“生日快乐”)。
标签: aws-lambda spotify alexa-skills-kit alexa-skill