javascript - Alexa NodeJS 在语音输出上失败,没有特定错误

标签 javascript jquery node.js aws-lambda alexa

我正在尝试创建一项 Alexa 技能,该技能可以根据 Alexa 设备的位置在 Web 服务上查找位置。

我已经让所有代码正常工作,因为我可以在日志中看到正确的输出,但我正在努力解决的一件事是让语音输出正常工作。

任何帮助将不胜感激。我对 NodeJS 还很陌生。我有一种感觉,这与在 https.request 中调用tell有关,但我现在不知道如何解决这个问题。

代码:

deviceAddressRequest.then((addressResponse) => {
    switch(addressResponse.statusCode) {
        case 200:
            console.log("Address successfully retrieved, now responding to user.");
            const address = addressResponse.address;
            const postcode = `${address['postalCode']}`;

            // Get JSON response

            console.info("test begin");

            var post_data =
            {
                "postcode":
                "`${address['postalCode']}`"
            };
            console.info ('Users postcode is ' + postcode);
            var post_options = {
                host:  '[redacted]',
                port: '443',
                path: '/alexa/address.php?postcode=' + encodeURI(postcode),
                method: 'POST',
                headers: {
                    'Content-Type': 'application/json',
                    'Content-Length': Buffer.byteLength(JSON.stringify(post_data))
                }
            };
            console.info ('Post options set');
            var post_req = https.request(post_options, function(res) {
                res.setEncoding('utf8');
                var returnData = "";
                res.on('data', function (chunk) {
                    returnData += chunk;
                });
                res.on('end', function () {
                    console.info("Data returned!")
                    console.info('returnData: ' + returnData);
                    var nearBoutique = JSON.parse(returnData).location1;
                    console.info("Nearest location: " + nearLocation);
                    const ADDRESS_MESSAGE = "Your nearest location is: " + nearLocation;
                });
            });
            post_req.write(JSON.stringify(post_data));
            post_req.end();
            console.info(ADDRESS_MESSAGE);
            // I tried it here, and also under the "const ADDRESS_MESSAGE"
            this.emit(":tell", ADDRESS_MESSAGE);
            break;
        case 204:
            console.log("Successfully requested from the device address API, but no address was returned.");
            this.emit(":tell", Messages.NO_ADDRESS);
            break;
        case 403:
            console.log("The consent token we had wasn't authorized to access the user's address.");
            this.emit(":tellWithPermissionCard", Messages.NOTIFY_MISSING_PERMISSIONS, PERMISSIONS);
            break;
        default:
            this.emit(":ask", Messages.LOCATION_FAILURE, Messages.LOCATION_FAILURE);
    }

    console.info("Ending getAddressHandler()");
});

以及 Lambda CloudWatch 日志:

START RequestId: *** Version: $LATEST
Beginning execution for skill with APP_ID=amzn1.ask.skill.***
Starting newSessionRequestHandler()
Starting getAddressHandler()
Creating AlexaAddressClient instance.
Ending newSessionRequestHandler()
Ending execution for skill with APP_ID=amzn1.ask.skill.***
Device Address API responded with a status code of : 200
Address successfully retrieved, now responding to user.
test begin
Users postcode is *** ***
Post options set
Data returned!
returnData: {"location1":"123 Street Name, London, is currently open.","location2":"123 Street Name, London, is currently open.","store3":"123 Street Name, London, is currently open.","postcode":*** ***}
Nearest location: 123 Street Name, London, is currently open.
END RequestId: ***
REPORT RequestId: Duration: 1869.51 ms Billed Duration: 1900 ms Memory Size: 128 MB Max Memory Used: 31 MB
START RequestId:  Version: $LATEST
Beginning execution for skill with APP_ID=amzn1.ask.skill.***
Starting sessionEndedRequestHandler()
Ending sessionEndedRequestHandler()
Ending execution for skill with APP_ID=amzn1.ask.skill.***
END RequestId: 
REPORT RequestId:  Duration: 15.49 ms Billed Duration: 100 ms Memory Size: 128 MB Max Memory Used: 31 MB

我并不是在寻找直接的解决方案,但请提供正确方向的指针就太好了。

谢谢

最佳答案

JavaScript 中 this 关键字的工作方式似乎存在问题,您需要查看 this link from mdn详细了解它的工作原理以及箭头函数的工作原理。

关于javascript - Alexa NodeJS 在语音输出上失败,没有特定错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43342164/

相关文章:

javascript - 如何避免重新渲染整个列表而不是在 React JS 中将新项目添加到 DOM 列表?

javascript - 使用 Mongoose 将非常大的 CSV 保存到 mongoDB

node.js - 无法从本地服务器为 cesium 查看器渲染 css

javascript - Backbone targetModel = undefined

javascript - 我没有在客户端上实时看到带有 Node js的json文件的值

javascript - JavaScript 中的 "method overloading"

javascript - 如何使我的水平 Spry 菜单栏垂直?

javascript - Rails "Load more..."而不是分页

javascript - 为什么这个 JavaScript 函数在网站首次加载时计算不正确,但之后可以正常工作?

javascript - 选择元素并使其成为第一个元素