- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想编写我的第一个 Alexa Skill,但我的第一个 intent 无法正常工作。错误处理程序出现并响应:“抱歉,...”
我想制作一个飞镖计算器,第一个 intent 应该返回:
"Ok ${spieleranzahl} Spieler, wie viele Punkte sollen gespielt werden?"
英文:
"Ok ${numerOfPlayers} players, how many points are we going to play?"
这是我的js代码,有人可以告诉我我做错了什么吗? (请不要介意 JSON 中的间距问题)
// This sample demonstrates handling intents from an Alexa skill using the Alexa Skills Kit SDK (v2).
// Please visit https://alexa.design/cookbook for additional examples on implementing slots, dialog management,
// session persistence, api calls, and more.
const Alexa = require('ask-sdk-core');
const LaunchRequestHandler = {
canHandle(handlerInput) {
return Alexa.getRequestType(handlerInput.requestEnvelope) === 'LaunchRequest';
},
handle(handlerInput) {
const speakOutput = 'Ok, mit wie vielen Spielern möchtest du spielen?';
const repromtText = 'Nenne eine Spieleranzahl zwischen eins und vier.';
return handlerInput.responseBuilder
.speak(speakOutput)
.reprompt(repromtText)
.getResponse();
}
};
//ErfasseSpieleranzahlHandler
const ErfasseSpieleranzahlHandler = {
canHandle(handlerInput) {
return Alexa.getRequestType(handlerInput.requestEnvelope) === 'IntentRequest'
&& Alexa.getIntentName(handlerInput.requestEnvelope) === 'ErfasseSpieleranzahl';
},
handle(handlerInput) {
const spieleranzahl = handlerInput.requestEnvelope.request.intent.slots.spieleranzahl.value;
const speakOutput = `Ok ${spieleranzahl} Spieler, wie viele Punkte sollen gespielt werden?`;
return handlerInput.responseBuilder
.speak(speakOutput)
//.reprompt(repromtText)
.getResponse();
}
};
const HelpIntentHandler = {
canHandle(handlerInput) {
return Alexa.getRequestType(handlerInput.requestEnvelope) === 'IntentRequest'
&& Alexa.getIntentName(handlerInput.requestEnvelope) === 'AMAZON.HelpIntent';
},
handle(handlerInput) {
const speakOutput = 'You can say hello to me! How can I help?';
return handlerInput.responseBuilder
.speak(speakOutput)
.reprompt(speakOutput)
.getResponse();
}
};
const CancelAndStopIntentHandler = {
canHandle(handlerInput) {
return Alexa.getRequestType(handlerInput.requestEnvelope) === 'IntentRequest'
&& (Alexa.getIntentName(handlerInput.requestEnvelope) === 'AMAZON.CancelIntent'
|| Alexa.getIntentName(handlerInput.requestEnvelope) === 'AMAZON.StopIntent');
},
handle(handlerInput) {
const speakOutput = 'Goodbye!';
return handlerInput.responseBuilder
.speak(speakOutput)
.getResponse();
}
};
const SessionEndedRequestHandler = {
canHandle(handlerInput) {
return Alexa.getRequestType(handlerInput.requestEnvelope) === 'SessionEndedRequest';
},
handle(handlerInput) {
// Any cleanup logic goes here.
return handlerInput.responseBuilder.getResponse();
}
};
// The intent reflector is used for interaction model testing and debugging.
// It will simply repeat the intent the user said. You can create custom handlers
// for your intents by defining them above, then also adding them to the request
// handler chain below.
const IntentReflectorHandler = {
canHandle(handlerInput) {
return Alexa.getRequestType(handlerInput.requestEnvelope) === 'IntentRequest';
},
handle(handlerInput) {
const intentName = Alexa.getIntentName(handlerInput.requestEnvelope);
const speakOutput = `You just triggered ${intentName}`;
return handlerInput.responseBuilder
.speak(speakOutput)
//.reprompt('add a reprompt if you want to keep the session open for the user to respond')
.getResponse();
}
};
// Generic error handling to capture any syntax or routing errors. If you receive an error
// stating the request handler chain is not found, you have not implemented a handler for
// the intent being invoked or included it in the skill builder below.
const ErrorHandler = {
canHandle() {
return true;
},
handle(handlerInput, error) {
console.log(`~~~~ Error handled: ${error.stack}`);
const speakOutput = `Sorry, I had trouble doing what you asked. Please try again.`;
return handlerInput.responseBuilder
.speak(speakOutput)
.reprompt(speakOutput)
.getResponse();
}
};
// The SkillBuilder acts as the entry point for your skill, routing all request and response
// payloads to the handlers above. Make sure any new handlers or interceptors you've
// defined are included below. The order matters - they're processed top to bottom.
exports.handler = Alexa.SkillBuilders.custom()
.addRequestHandlers(
LaunchRequestHandler,
ErfasseSpieleranzahlHandler,
HelpIntentHandler,
CancelAndStopIntentHandler,
SessionEndedRequestHandler,
IntentReflectorHandler, // make sure IntentReflectorHandler is last so it doesn't override your custom intent handlers
)
.addErrorHandlers(
ErrorHandler,
)
.lambda();
{
"version": "1.0",
"session": {
"new": false,
"sessionId": "amzn1.echo-api.session.3a85cdaf-f0dc-457a-ad39-16b0517b0889",
"application": {
"applicationId": "amzn1.ask.skill.85a2b11a-5d56-4c52-9613-44999914ce0f"
},
"user": {
"userId": "amzn1.ask.account.AFNNC73ZRXQAKJKCRCEDOCVGUG6PH5MQ3JOACBXC4ATPMXG4WPB2LQEFAYHNGI2Q2LULPXXIUN6KGXBHDOMJTC75XCU5Z6OQCNZ5BNSFNUQHGD3M7B5Q52RG4JNPDMCO4UKNQJIUNZ3DLLWIED7RP7LIJ7QJA3ROR4Q7KWYP5UYOFF5OHNSWYKXOZH6MVSWSZYHGW2XPEQEVPLY"
}
},
"context": {
"System": {
"application": {
"applicationId": "amzn1.ask.skill.85a2b11a-5d56-4c52-9613-44999914ce0f"
},
"user": {
"userId": "amzn1.ask.account.AFNNC73ZRXQAKJKCRCEDOCVGUG6PH5MQ3JOACBXC4ATPMXG4WPB2LQEFAYHNGI2Q2LULPXXIUN6KGXBHDOMJTC75XCU5Z6OQCNZ5BNSFNUQHGD3M7B5Q52RG4JNPDMCO4UKNQJIUNZ3DLLWIED7RP7LIJ7QJA3ROR4Q7KWYP5UYOFF5OHNSWYKXOZH6MVSWSZYHGW2XPEQEVPLY"
},
"device": {
"deviceId": "amzn1.ask.device.AHH2M6X2MORRNRLKQPH43LOAWIUADHUFRQGVEPUBHEYPSFXWJNIGJRUHRMUDT2P5UORD4IRELIIRK4A6YHC6QCMFEZ47FVYCR5Z5QLBNC5XA4Y5YU7G6OL4EQPDA43DAZ476EU47JKMBVWEW4YH5D6BAZHJCTYKURK5M75YDLUVWVEFSNEA5W",
"supportedInterfaces": {}
},
"apiEndpoint": "https://api.eu.amazonalexa.com",
"apiAccessToken": "eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImtpZCI6IjEifQ.eyJhdWQiOiJodHRwczovL2FwaS5hbWF6b25hbGV4YS5jb20iLCJpc3MiOiJBbGV4YVNraWxsS2l0Iiwic3ViIjoiYW16bjEuYXNrLnNraWxsLjg1YTJiMTFhLTVkNTYtNGM1Mi05NjEzLTQ0OTk5OTE0Y2UwZiIsImV4cCI6MTU3NDYzNTE5OSwiaWF0IjoxNTc0NjM0ODk5LCJuYmYiOjE1NzQ2MzQ4OTksInByaXZhdGVDbGFpbXMiOnsiY29udGV4dCI6IkFBQUFBQUFBQVFCRXVIeUJGdEd0SCtkZFgrSGl3aTIrS3dFQUFBQUFBQUJnYWNId014bENqbWQrTEJYWGEwcEd0Y2JnTlpjdWg3dFFVOCtOWU9FaVZSeThTdHBTM3c2RGUyQlI1ZXZNMGpZcmJtWHB0NUlDdE9BeW1ydFBNZXo2M3oyVXdCb3RkTXZtbDNIWUhGeHoxbk5leGwwR0NlaVNuckJZcjU0aXg5OTlFSmhNbHhCNi94TnVqVUh2ekdCQmhLWE5EcTdCdFUzaEQ1Q0M1dVYxUWJIdE5MYTlIR1VzQjBzSkdxNVVYd0RBb0ZRMERoekwyV1NUd3pybDlBZU1hcDZ4OWsySXN2VDdwSHBZQ1p4Znh1ckxMN09OZDJ4cjF3VUtDa3M3ZFAzNHh6bGIzWUxmejRoRmgwSTVlUzVYRklRWGlBRWFGaXBNMTVYQ3RxM0FWSXgxZHpRUnlrVndpa2M3ck5yMDEvdFNxN01ESHFqT2prMGRSK2cwNHhQZUxnaU9idkdzbk5sYjJoS2thOG12d2RmUDRuWC9LWGVMeFRSdXdtOVUxSEpTeWs1cDhxSjVRSlBSSnc9PSIsImNvbnNlbnRUb2tlbiI6bnVsbCwiZGV2aWNlSWQiOiJhbXpuMS5hc2suZGV2aWNlLkFISDJNNlgyTU9SUk5STEtRUEg0M0xPQVdJVUFESFVGUlFHVkVQVUJIRVlQU0ZYV0pOSUdKUlVIUk1VRFQyUDVVT1JENElSRUxJSVJLNEE2WUhDNlFDTUZFWjQ3RlZZQ1I1WjVRTEJOQzVYQTRZNVlVN0c2T0w0RVFQREE0M0RBWjQ3NkVVNDdKS01CVldFVzRZSDVENkJBWkhKQ1RZS1VSSzVNNzVZRExVVldWRUZTTkVBNVciLCJ1c2VySWQiOiJhbXpuMS5hc2suYWNjb3VudC5BRk5OQzczWlJYUUFLSktDUkNFRE9DVkdVRzZQSDVNUTNKT0FDQlhDNEFUUE1YRzRXUEIyTFFFRkFZSE5HSTJRMkxVTFBYWElVTjZLR1hCSERPTUpUQzc1WENVNVo2T1FDTlo1Qk5TRk5VUUhHRDNNN0I1UTUyUkc0Sk5QRE1DTzRVS05RSklVTlozRExMV0lFRDdSUDdMSUo3UUpBM1JPUjRRN0tXWVA1VVlPRkY1T0hOU1dZS1hPWkg2TVZTV1NaWUhHVzJYUEVRRVZQTFkifX0.d3uA1qasqTQdtqid78zvnRuE_dVz3z-czcr8ajjZ4-NtSNIa67Em3YMyLQ7nhld5e0dM8IvqiwwvViiS6e6kXMa9QZQYMeanAR994s4M7SwgQeA-9n8UebUsjMhNLORqx-SCJlcZL4sN2LqJsUuLQLA8m2VucVo9EveNGrqYQFuLHtYiadsE4xKQ-9x3GBy9th3rf1sEesrEDktRljZw44yafClegR8kz-Xv7Uso6x6SC0sO9I3iM1a5CJKFV8-3EJBQZ3cDVktPZQ2Erp-IhsyXA3LRJBWMWKx8FFSFM_p3ZeYdtcIq28KPYDSFThIWvTRh7KSXzWltm8RmFoR3JQ"
},
"Viewport": {
"experiences": [
{
"arcMinuteWidth": 246,
"arcMinuteHeight": 144,
"canRotate": false,
"canResize": false
}
],
"shape": "RECTANGLE",
"pixelWidth": 1024,
"pixelHeight": 600,
"dpi": 160,
"currentPixelWidth": 1024,
"currentPixelHeight": 600,
"touch": [
"SINGLE"
],
"video": {
"codecs": [
"H_264_42",
"H_264_41"
]
}
},
"Viewports": [
{
"type": "APL",
"id": "main",
"shape": "RECTANGLE",
"dpi": 160,
"presentationType": "STANDARD",
"canRotate": false,
"configuration": {
"current": {
"video": {
"codecs": [
"H_264_42",
"H_264_41"
]
},
"size": {
"type": "DISCRETE",
"pixelWidth": 1024,
"pixelHeight": 600
}
}
}
}
]
},
"request": {
"type": "IntentRequest",
"requestId": "amzn1.echo-api.request.945d9c9a-49ff-423c-8d84-50de36f54c01",
"timestamp": "2019-11-24T22:34:59Z",
"locale": "de-DE",
"intent": {
"name": "ErfasseSpieleranzahl",
"confirmationStatus": "NONE",
"slots": {
"Spieleranzahl": {
"name": "Spieleranzahl",
"value": "1",
"confirmationStatus": "NONE",
"source": "USER"
}
}
},
"dialogState": "COMPLETED"
}
}
JSON 输出
{
"body": {
"version": "1.0",
"response": {
"outputSpeech": {
"type": "SSML",
"ssml": "<speak>Sorry, I had trouble doing what you asked. Please try again.</speak>"
},
"reprompt": {
"outputSpeech": {
"type": "SSML",
"ssml": "<speak>Sorry, I had trouble doing what you asked. Please try again.</speak>"
}
},
"shouldEndSession": false,
"type": "_DEFAULT_RESPONSE"
},
"sessionAttributes": {},
"userAgent": "ask-node/2.7.0 Node/v8.10.0"
}
}
最佳答案
您正在注销失败位置的堆栈跟踪,您是否尝试在 Cloudwatch 日志中查找错误,因为它会缩小范围?
尽管我可以立即看到您的插槽名为 Spieleranzahl
但在您的代码中,当您尝试访问它时,您使用 spieleranzahl
<- 注意小写的 's'。属性名称区分大小写,因此这可能会导致错误。
这是更正后的处理程序:
//ErfasseSpieleranzahlHandler
const ErfasseSpieleranzahlHandler = {
canHandle(handlerInput) {
return Alexa.getRequestType(handlerInput.requestEnvelope) === 'IntentRequest'
&& Alexa.getIntentName(handlerInput.requestEnvelope) === 'ErfasseSpieleranzahl';
},
handle(handlerInput) {
const spieleranzahl = handlerInput.requestEnvelope.request.intent.slots.Spieleranzahl.value;
const speakOutput = `Ok ${spieleranzahl} Spieler, wie viele Punkte sollen gespielt werden?`;
return handlerInput.responseBuilder
.speak(speakOutput)
//.reprompt(repromtText)
.getResponse();
}
};
关于javascript - 第一个技巧,就是 errorHandler,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59023179/
我是新手。查看 Google 新闻...上下滚动页面时请注意左侧导航栏。 看看它是如何滚动一点,然后在它消失之前粘在页面顶部的? 关于如何做到这一点有什么想法吗? jQuery 和 CSS 可以复制吗
技巧 1:在 Web 服务器上缓存常用数据 技巧 2:在 Application 或 Session 对象中缓存常用数据 技巧 3:在 Web 服务器磁盘上缓存数据和 HTML 技巧 4:避免
我在 excel 中有一个电子表格,其中包含以下行: COLUMN Value1.Value2.Value3 Value4.Value5.Value6 Value7.Value8.Val
GNU Makefile 中是否有任何技巧来获取规则的所有依赖项? 例子: rule1: dep1_1 dep1_2 dep1_3 rule2: dep2_1 dep2_2 rule1 dump_
人们使用什么来追踪内存泄漏?我已经通过代码检查设法解决了一些问题,但我不知道下一步该做什么/当我的程序变大时我将如何管理问题。我知道我在泄漏什么类型的对象,但我不知道是什么让它保持活力。 在 Wind
有什么好的方法可以将“xlSum”、“xlAverage”和“xlCount”等字符串转换为它们在 Microsoft.Office.Interop.Excel.XlConsolidationFunc
我们都见过这个: javascript:document.body.contentEditable='true'; document.designMode='on';无效 0 但我的问题是,这实际上是
我的应用程序将输出一个图形,其布局由用户定义。自定义布局类应该实现我定义的接口(interface)。我应该怎么做?有一个特殊的文件夹,我可以在其中查找布局类?用户是否将类名作为参数传递给应用? 如有
我在弄清楚如何在 Javascript 中自引用表行时遇到了一些麻烦。 这是简化的代码: $( "#listitems tbody" ).append( "" + "" + id.va
关闭。这个问题需要更多focused .它目前不接受答案。 想改进这个问题吗? 更新问题,使其只关注一个问题 editing this post . 关闭 6 年前。 Improve this q
我正在将代码库从一种编程风格转移到另一种编程风格。 我们有一个名为 Operand 的类型,定义如下: class Operand {...}; 然后我们有 class OperandFactory
我使用以下缩略图类在我的内容包装器中显示 4x3 缩略图: .thumbnail { float:left; width:300px; height:200px; ma
按照目前的情况,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我认为这是不可能的,但我想在放弃之前问问你。 我想要类似 constexpr 增量的东西。 #include constexpr int inc() { static int inc = 0;
是否有任何适合 C++ 新手的技术和描述的好列表。我在想一个描述 RAII、RVO、左值的列表……这适用于目前不了解这些技术或来自不适用这些技术的其他语言的新手。 最好是短小精悍的:-) 最佳答案 是
我有一个二进制字符串 '01110000',我想在不编写 forloop 的情况下返回前面的前导零数。有谁知道如何做到这一点?如果字符串立即以“1”开头,最好也返回 0 最佳答案 如果您真的确定它是一
我需要优化我的应用程序的 RAM 使用率。 请省去那些告诉我在编写 Python 代码时不应该关心内存的讲座。我有内存问题,因为我使用非常大的默认字典(是的,我也想快点)。我目前的内存消耗是 350M
有时,当我看到一个我喜欢的网站或来自受人尊敬的人的网站时,我会查看源代码并尝试理解它们(就像我们所有人一样)。 关于 Jeremy Keiths他使用以下代码的网站: [role="navigatio
这是我怎样设置 Git 来管理我的家目录的方法。 我有好几台电脑。一台笔记本电脑用于工作,一台工作站放在家里,一台树莓派(或四台),一台 Pocket CHIP,一台 运行
shell 技巧 表变量 HBase 0.95 版本增加了为表提供 jruby 风格的面向对象引用的 shell 命令。以前,作用于表的所有 shell 命令都具有程序风格,该风格始终将表的名称作
我是一名优秀的程序员,十分优秀!