ASP.NET Web API从模型帮助页生成所有参数
本文关键字:参数 帮助 Web NET API 模型 ASP | 更新日期: 2023-09-27 18:30:03
我正忙于创建Web API(在aspmvc4应用程序内部)。我正在使用asp.net网站上建议的库来生成文档(http://www.asp.net/web-api/overview/creating-web-apis/creating-api-help-pages)。
我的问题是,如果我的参数是一个模型,那么我无法指定模型在生成的帮助页面中包含什么属性。
这里有一个例子:
型号:
public class TestModel
{
property String FirstName {get;set;}
property String Surname {get; set;}
property Boolean Active {get;set;}
}
动作:
/// <summary>
/// This is a test action
/// </summary>
/// <param name="model">this is the model</param> <-- this works
/// <param name="FirstName">This is the first name </param> <-- doesn't work
/// <param name ="model.Surname">This is the surname</param> <-- doesn't work
public HttpResponseMessage Post(my.namespace.models.TestModel model)
{
...
}
只生成模型的参数。
我查看了为文档生成的xml文档,它确实添加了其他参数。
<member name="my.namespace.api.Post(my.namespace.models.TestModel)">
<summary>
this is a test action
</summary>
<param name="model>this is the model</param>
<param name="FirstName">This is the first name </param>
<param name="model.Surname">This is the surname</param>
</member>
但在帮助页面上,它只生成参数模型。
我已经追踪到它从xml中获取参数的方法。
Collection<ApiDescription> apiDescriptions = config.Services.GetApiExplorer().ApiDescriptions;
它位于自动生成的HelpPageConfigurationExtends.cs中。
我是不是走错路了?有人知道附近有工作吗?
任何建议或解决方案都将不胜感激。
MVC Web API文档功能使用反射遍历API类和方法。这将构建文档的结构,但会导致或多或少的文档是空的(无用的),除非您添加了文档注释。
文档正文使用XML文件填充,该文件使用///文档注释生成,文档注释具有必须遵循的特定结构。这意味着你不能用你想让它显示的任何东西来填充xml,它实际上必须连接到API中的某个东西,并且必须遵循你的类和属性的结构。
因此,在您的情况下,您不能将模型属性文档放在api方法中。您必须将其放入属性所在的模型中。
型号:
public class TestModel
{
/// <summary>This is the first name </summary>
property String FirstName {get;set;}
/// <summary>This is the surname</summary>
property String Surname {get; set;}
property Boolean Active {get;set;}
}
动作:
/// <summary>
/// This is a test action
/// </summary>
/// <param name="model">this is the model</param>
public HttpResponseMessage Post(my.namespace.models.TestModel model)
{
...
}
修改帮助页
自动生成的默认帮助页面不包括模型文档,只记录了api方法。为了在api中显示更多关于参数的信息,需要进行自定义。下面的说明是添加参数文档的一种方法。
在区域/帮助页面/型号中创建两个新类型
public class TypeDocumentation
{
public TypeDocumentation()
{
PropertyDocumentation = new Collection<PropertyDocumentation>();
}
public string Summary { get; set; }
public ICollection<PropertyDocumentation> PropertyDocumentation { get; set; }
}
public class PropertyDocumentation
{
public PropertyDocumentation(string name, string type, string docs)
{
Name = name;
Type = type;
Documentation = docs;
}
public string Name { get; set; }
public string Type { get; set; }
public string Documentation { get; set; }
}
将新属性添加到HelpPageApiModel.cs
public IDictionary<string, TypeDocumentation> ParameterModels{ get; set; }
创建一个新的接口
internal interface IModelDocumentationProvider
{
IDictionary<string, TypeDocumentation> GetModelDocumentation(HttpActionDescriptor actionDescriptor);
}
修改XmlDocumentationProvider以实现新接口
public class XmlDocumentationProvider : IDocumentationProvider, IModelDocumentationProvider
{
private const string TypeExpression = "/doc/members/member[@name='T:{0}']";
private const string PropertyExpression = "/doc/members/member[@name='P:{0}']";
///...
///... existing code
///...
private static string GetPropertyName(PropertyInfo property)
{
string name = String.Format(CultureInfo.InvariantCulture, "{0}.{1}", property.DeclaringType.FullName, property.Name);
return name;
}
public IDictionary<string, TypeDocumentation> GetModelDocumentation(HttpActionDescriptor actionDescriptor)
{
var retDictionary = new Dictionary<string, TypeDocumentation>();
ReflectedHttpActionDescriptor reflectedActionDescriptor = actionDescriptor as ReflectedHttpActionDescriptor;
if (reflectedActionDescriptor != null)
{
foreach (var parameterDescriptor in reflectedActionDescriptor.GetParameters())
{
if (!parameterDescriptor.ParameterType.IsValueType)
{
TypeDocumentation typeDocs = new TypeDocumentation();
string selectExpression = String.Format(CultureInfo.InvariantCulture, TypeExpression, GetTypeName(parameterDescriptor.ParameterType));
var typeNode = _documentNavigator.SelectSingleNode(selectExpression);
if (typeNode != null)
{
XPathNavigator summaryNode;
summaryNode = typeNode.SelectSingleNode("summary");
if (summaryNode != null)
typeDocs.Summary = summaryNode.Value;
}
foreach (var prop in parameterDescriptor.ParameterType.GetProperties())
{
string propName = prop.Name;
string propDocs = string.Empty;
string propExpression = String.Format(CultureInfo.InvariantCulture, PropertyExpression, GetPropertyName(prop));
var propNode = _documentNavigator.SelectSingleNode(propExpression);
if (propNode != null)
{
XPathNavigator summaryNode;
summaryNode = propNode.SelectSingleNode("summary");
if (summaryNode != null) propDocs = summaryNode.Value;
}
typeDocs.PropertyDocumentation.Add(new PropertyDocumentation(propName, prop.PropertyType.Name, propDocs));
}
retDictionary.Add(parameterDescriptor.ParameterName, typeDocs);
}
}
}
return retDictionary;
}
}
向GenerateApiModel方法中的HelpPageConfigurationExtension添加代码
IModelDocumentationProvider modelProvider =
config.Services.GetDocumentationProvider() as IModelDocumentationProvider;
if (modelProvider != null)
{
apiModel.ParameterModels = modelProvider.GetModelDocumentation(apiDescription.ActionDescriptor);
}
修改HelpPageApiModel.cshtml,添加到您希望显示模型文档的位置。
bool hasModels = Model.ParameterModels.Count > 0;
if (hasModels)
{
<h2>Parameter Information</h2>
@Html.DisplayFor(apiModel => apiModel.ParameterModels, "Models")
}
将Models.cshtml添加到DisplayTemplates
@using System.Web.Http
@using System.Web.Http.Description
@using MvcApplication2.Areas.HelpPage.Models
@model IDictionary<string, TypeDocumentation>
@foreach (var modelType in Model)
{
<h3>@modelType.Key</h3>
if (modelType.Value.Summary != null)
{
<p>@modelType.Value.Summary</p>
}
<table class="help-page-table">
<thead>
<tr>
<th>Property</th>
<th>Description</th>
</tr>
</thead>
<tbody>
@foreach (var propInfo in modelType.Value.PropertyDocumentation)
{
<tr>
<td class="parameter-name"><b>@propInfo.Name</b> (@propInfo.Type)</td>
<td class="parameter-documentation">
<pre>@propInfo.Documentation</pre>
</td>
</tr>
}
</tbody>
</table>
}
josant的答案非常有效。然而,我确实发现它有点过于热情了。我发现它将字符串等简单的东西报告为模型,并将它们报告为带有长度字段的Char数组!
我们只需要模型使用此代码,所以我将此代码添加到GetModelDocumentation方法的末尾:
if (parameterDescriptor.ParameterName == "value" || parameterDescriptor.ParameterName == "model")
{
retDictionary.Add(parameterDescriptor.ParameterName, typeDocs);
}
现在它只返回非简单类型的参数详细信息。