1

私は Alexa スキルを作成しており、nodejs の残りのモジュールを含める必要があるため、AWS コンソールからクラウド 9 に変更しました。コンソールではすべて正常に動作しますが、まったく同じ設定でプロジェクトを作成すると (新しいモジュール) 次の構文エラーが発生します。

{
    "errorMessage": "Unexpected token )",
    "errorType": "SyntaxError",
    "stackTrace": [
        "    ^",
        "SyntaxError: Unexpected token )",
        "createScript (vm.js:56:10)",
        "Object.runInThisContext (vm.js:97:10)",
        "Module._compile (module.js:542:28)",
        "Object.Module._extensions..js (module.js:579:10)",
        "Module.load (module.js:487:32)",
        "tryModuleLoad (module.js:446:12)",
        "Function.Module._load (module.js:438:3)",
        "Module.require (module.js:497:17)",
        "require (internal/module.js:20:19)"
    ]
}

構文エラーがどの行で発生したかはわかりません。コンソールではまったく同じ入力で正常に動作します。

index.js に launchRequestHandler のみを含めるようにコードを削減しようとしました。

const LaunchRequestHandler = {
    canHandle(handlerInput) {
        return handlerInput.requestEnvelope.request.type === 'LaunchRequest';
    },
    handle(handlerInput) {
        var reprompt = '';
        const speakOutput = 'Start';
        return handlerInput.responseBuilder
            .speak(speakOutput)
            .reprompt(reprompt)
            .withShouldEndSession(false)
            .getResponse();
    },
};
const skillBuilder = Alexa.SkillBuilders.custom();

exports.handler = skillBuilder
    .addRequestHandlers(
        LaunchRequestHandler,
    )
    .addErrorHandlers(ErrorHandler)
    .lambda();

また、package.jsonをコンソールの内容に変更して、npm initで新しく作成しましたが、どちらも違いはありません。私は何を間違っていますか?何か足りないものはありますか?

私の template.yml は次のようになります。

AWSTemplateFormatVersion: '2010-09-09'
Transform: 'AWS::Serverless-2016-10-31'
Description: An AWS Serverless Specification template describing your function.
Resources:
  protocollFunction:
    Type: 'AWS::Serverless::Function'
    Properties:
      Handler: protocollFunction/index.handler
      Runtime: nodejs6.10
      Description: ''
      MemorySize: 128
      Timeout: 15
      Events:
        LambdaMicroservice:
          Type: Api
          Properties:
            Path: /
            Method: ANY
  protocollFunctionPermission:
    Type: 'AWS::Lambda::Permission'
    Properties:
      Action: 'lambda:InvokeFunction'
      FunctionName:
        'Fn::GetAtt':
          - protocollFunction
          - Arn
      Principal: apigateway.amazonaws.com
      SourceArn:
        'Fn::Sub': 'arn:aws:execute-api:${AWS::Region}:${AWS::AccountId}:*/*/*/*'
4

1 に答える 1