如何使用Python检查并获取Alexa广告位值,请问sdk

时间:2019-01-11 16:25:45

标签: python alexa alexa-skills-kit alexa-skill alexa-slot

在我的交互模型中,我定义了一个名为city的插槽,该插槽是可选的,而不是必需的,可以实现意图。

我正在使用python ask sdk,所以我的处理程序是这样的:

class IntentHandler(RequestHandler):
    """
    Intent handler
    """

    def can_handle(self, handler_input):
        # type: (HandlerInput) -> bool
        return is_request_type("IntentRequest")(handler_input) and \
               is_intent_name("ExampleIntent")(handler_input)

    def handle(self, handler_input):
        # type: (HandlerInput) -> Response
        access_token = handler_input.request_envelope.context.system.user.access_token

        if access_token is None:
            raise Exception("no access_token provided")

        speech = RESPONSE_MESSAGE_DEFAULT
        handler_input.response_builder.speak(speech)

    return handler_input.response_builder.response

如何检查用户是否已填充该插槽以及如何获取其值?

2 个答案:

答案 0 :(得分:2)

在处理程序中,您可以执行以下操作:

slots = handler_input.request_envelope.request.intent.slots
city = slots['city']
if city.value:
    # take me down to the paradise city
else:
    # this city was not built on rock'n'roll

slots是包含str: Slot个值的字典,有关更多详细信息,请参见IntentSlot的源代码。

答案 1 :(得分:2)

根据找到的here文档,您可以执行以下操作:

import ask_sdk_core.utils as ask_utils
slot = ask_utils.request_util.get_slot(handler_input, "slot_name")
if slot.value:
    # do stuff