在插件开发项目 plugin.yaml 中实现接口注册时,是否能考虑支持 RESTful 风格

Viewed 45
apis:
    - type: addition
      methods:
          - GET
          - POST
          - PUT
          - DELETE
      url: /project/:project_id/case/:id
      function: projectCase

如图,目前如果声明复数的 methods 或者尝试使用 urlParams 插件无法运行

1 Answers