所以我一直在谷歌上搜索很多来尝试解决这个问题,但我似乎找不到任何关于它的东西。请参阅图片以供引用,但我正在尝试填写主体参数的描述字段。执行此操作的最佳方法是什么?
您可以添加描述属性:
[Description("Get the data from our service. It will requires a key.")]
public ActionResult GetData(string key)
{
//Do something here...
return Json(new{Success=true, Data = data});
}
或者对于参数
public ActionResult GetData([Description("A valid key should be formated as xxx-xxx-xx")]string key)
{
//Do something here...
return Json(new{Success=true, Data = data});
}
发件人:http://millionbonus.bitbucket.org/mvc.apiexplorer/
我是一名优秀的程序员,十分优秀!