gpt4 book ai didi

c# - 如果返回格式是 xml,如何删除 web api 中的模式节点?

转载 作者:数据小太阳 更新时间:2023-10-29 01:52:03 26 4
gpt4 key购买 nike

我有一个将格式作为参数的 web api 方法,该方法返回 xml 和 json。该方法返回的数据类型是 DataTable。在 json 格式中,一切看起来都很好,但在 xml 格式中,数据表的模式和一些其他属性在 xml 节点中也返回。如何返回仅包含数据表数据的简单 xml?另外,我在 WebApiConfig 中使用 QueryStringMapping。

这是 WebApiConfig 代码

public static void Register(HttpConfiguration config)
{
config.MapHttpAttributeRoutes();
config.Routes.MapHttpRoute(
name: "DefaultApi",
routeTemplate: "api/{controller}/{action}/{id}",
defaults: new { id = RouteParameter.Optional }
);
config.Formatters.JsonFormatter.MediaTypeMappings.Add(new QueryStringMapping("format", "json", new MediaTypeHeaderValue("application/json")));
config.Formatters.XmlFormatter.MediaTypeMappings.Add(new QueryStringMapping("format", "xml", new MediaTypeHeaderValue("application/xml")));
GlobalConfiguration.Configuration.Formatters.JsonFormatter.SerializerSettings.Formatting = Newtonsoft.Json.Formatting.Indented;
}

这是 Controller 方法的伪代码

[BasicAuthentication]
[Route("api/{tablename}")]
[HttpGet]
public IHttpActionResult Get(string tablename, string orders = "", int limit = 100)
{
DataTable dt = new DataTable{TableName="resource"};
//... Database connection and getting result
return Ok(new Response{ limit = limit,count=dt.Rows.Count, data =dt });
}

和响应模型

public class Response
{
public int limit { get; set; }
public int count { get; set; }
public DataTable data { get; set; }

}

返回的xml示例

   <Response xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<limit>1</limit>
<count>1</count>
<data>
<xs:schema xmlns="" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="NewDataSet">
<xs:element name="NewDataSet" msdata:IsDataSet="true" msdata:MainDataTable="resource" msdata:UseCurrentLocale="true">
<xs:complexType>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name="resource">
<xs:complexType>
<xs:sequence>
<xs:element name="ID" type="xs:long" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:choice>
</xs:complexType>
</xs:element>
</xs:schema>
<diffgr:diffgram xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" xmlns:diffgr="urn:schemas-microsoft-com:xml-diffgram-v1">
<DocumentElement>
<resource diffgr:id="resource1" msdata:rowOrder="0">
<ID>1</ID>
</resource>
</DocumentElement>
</diffgr:diffgram>
</data>
</Response>

综上所述,我只想返回数据节点中的资源节点,不带任何属性。

最佳答案

我在发布这个问题后找到了答案。问题是数据表对象的 XmlSchema。在覆盖它的 IXmlSerializable 接口(interface)的 GetSchema 中编写自定义数据表 xml 序列化程序并返回 null。自定义序列化程序是 there.

关于c# - 如果返回格式是 xml,如何删除 web api 中的模式节点?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39573443/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com