0

在我的项目中,我使用的是无服务器。我正在尝试更改默认状态代码和响应。我尝试了以下方法。

dashboard:
  handler: src/common/dashboard.dashboard
  role: CommonServicesFullAccessRole
  timeout: 30
  events:
    - http:
        integration: lambda
        path: ui/dashboard/
        method: get
        request: 
          parameters: 
            paths: 
              id: true
        response:
          headers:
            Content-Type: "'text/html'"
          template: $input.path('$')
          statusCodes:
            400:
              pattern: '[\s\S]*Bad Request[\s\S]*'
              template: $input.path('$.errorMessage')
              headers:
                Content-Type: "'text/plain'"

在我的 lambda 中,我将错误回调返回为

return callback('Bad Request');

尽管如此,我还是无法获得具有指定状态代码的响应。我不确定确切的错误在哪里。以下是我得到的回应。

在此处输入图像描述

请帮我解决这个问题。谢谢...

4

1 回答 1

1

试试下面的。

# Instead of "return callback('Bad Request');"
callback(new Error('Bad Request'));  

虽然我不是Node用户,但我已经看到这些示例代码Error使用Node.

对于Python,如果在块上使用您的serverless配置,我会对其进行测试。response

raise Exception('Bad Request')  # in case of Python

- 编辑 -

我认为我serverless.yml的与您的没有区别,因为我只是复制了您的部分。

但是,我附上了我的测试代码,希望对您有所帮助。

# serverless.yml

service: "lambda"

provider:
  name: aws
  runtime: nodejs6.10
  region: ap-northeast-2
  stage: test

package:
  exclude:
    - "*/**"
  include:
    - "handler.js"

functions:
  api-test:
    handler: handler.functionOne
    events:
      - http:
          method: get
          path: fire
          integration: lambda

          response:
            headers:
              Content-Type: "'text/html'"
            template: $input.path('$')
            statusCodes:
              400:
                pattern: '[\s\S]*Bad Request[\s\S]*'
                template: $input.path('$.errorMessage')
                headers:
                  Content-Type: "'text/plain'"

# handler.js

module.exports.functionOne = function(event, context, callback) {
    callback(new Error('Bad Request'));
}

# 卷曲

$ curl -X GET https://xxxxxxxx.execute-api.ap-northeast-2.amazonaws.com/test/fire -v
.
.
.
< HTTP/2 400
< content-type: text/plain
< content-length: 11
< date: Mon, 15 Oct 2018 12:40:34 GMT
.
.
.
Bad Request
于 2018-10-13T09:00:01.817 回答