当前位置:  开发笔记 > 编程语言 > 正文

Alexa Skill - 如何检索Lambda函数中的槽值

如何解决《AlexaSkill-如何检索Lambda函数中的槽值》经验,为你挑选了1个好方法。

我正在开发一个带有一个Intent的Alexa技能,其中包含一个带有几个可能值的Slot.

我的槽与所定义"name" : "Channel","type" : "LIST_OF_CHANNELS"和值

    iqram

    英格丽

    菲尔

    克莱德

如何检索要在Lambda函数中使用的发出的槽值?这是"从话语部分检索插槽的价值"我希望得到回答.非常感谢.

 // retrieve value of slot from utterance     
 var c = intent.slots.Channel.value; 

 // append value to end of URL that references API
 fetchEnseParse("/channel/" + c, function(body) {

 // continuation of this function is below 

小智.. 12

var c = this.event.request.intent.slots.slotname.value

这应该会给你你想要的东西.



1> 小智..:

var c = this.event.request.intent.slots.slotname.value

这应该会给你你想要的东西.

推荐阅读
小色米虫_524
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有