如何在Swagger UI中添加新方法?

时间:2015-05-28 07:47:52

标签: asp.net-mvc-3 swagger-ui swagger-2.0

我是Swagger API的新手,在ASP.Net中也是如此,我想知道如何在UI上添加新的HTTP方法(例如GET,POST,PUT,DELETE)。它只包含6个方法作为默认值。我想添加像另一个GET方法。那么,有什么帮助吗?

控制器

using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Web.Http;

namespace DemoSwagger.Controllers
{
    public class ValuesController : ApiController
    {
        // GET api/values
        public IEnumerable<string> Get()
        {
            return new string[] { "Cat", "Dog", "Bear" };
        }

        // GET api/values/5
        public string Get(int id, string sm, string BCID)
        {
            if (id == 1)
            {
                return "Cat";
            }
            else if (id == 2)
            {
                return "Dog";
            }
            else if (id == 3)
            {
                return "Bear";
            }
            else
            {
                return "Out of Range";
            }    
        }

        // POST api/values
        public void Post([FromBody]string value)
        {


        }

        // PUT api/values/5
        public void Put(int id, [FromBody]string value)
        {

        }

        // DELETE api/values/5
        public void Delete(int id)
        {

        }    
    }
}

1 个答案:

答案 0 :(得分:0)

Swagger只代表您的API&#34;签名&#34;。您没有向Swagger添加方法,您可以向API添加方法,Swagger会显示它。

您只需向API添加方法即可显示。如果他们不这样做,请使用[Get]和/或[HttpGet]进行装饰(取决于您的Swagger和MVC API版本)。