无法解析配置的swagger-router处理程序

时间:2018-02-13 21:11:02

标签: node.js swagger-2.0 apigee

当我从我的Vuejs应用程序向我的a127 / apigee-127 Rest服务提交POST请求时,http响应为500:

{"message":"Cannot resolve the configured swagger-router handler: IAGController_post"}

似乎正在发生的事情是a127 Rest WebService正在添加" _post"我的IAGController的名字,我不知道为什么?

Vuejs代码:

let path = 'http://localhost:10010/iag';       
this.$http.post(path, {body: {grantType: 'bar', apiKey: 'abc', apiSecret: 'defg'}, headers: {'Content-Type': 'application/json'}})
          .then(response => {
          return response.json();
        }).then(data => {
            console.log(data);
        });

RESTFul WebService代码:

扬鞭:

swagger: "2.0"
info:
  version: "0.0.1"
  title: Hello World App
host: localhost:10010
basePath: /
schemes:
 - http
 - https
produces:
  - application/json
x-a127-config: {}
x-a127-services: {}
paths:
  /iag:
    x-swagger-router-controller: IAGController
    x-a127-apply: {}
    post:
      consumes: [application/json]
      parameters:  
        - name: body
          in: body
          description: Request a secure token
          required: true
          schema:
            $ref: "#/definitions/IAGSecurityRequest"
      responses:
        "200":
          description: Success
          schema:
            # a pointer to a definition
            $ref: "#/definitions/tokenResponse"
        # responses may fall through to errors
        default:
          description: Error
          schema:
            $ref: "#/definitions/ErrorResponse"
definitions:
  IAGSecurityRequest:
    type: object
    properties:
      grantType:
        type: string
      apiKey:
        type: string
      apiSecret:
        type: string
ErrorResponse:
    type: string
  tokenResponse:
    type: object
    properties:
      access_token:
        type: string
      token_type:
        type: string
      expires_in:
        type: integer

1 个答案:

答案 0 :(得分:0)

尝试这样做: Swagger generator doesn't recognize controller

也许你还要用get....

开始你的功能名称