10

我目前正在使用一个控制台应用程序,我正在使用 HttpClient 与 Apache CouchDB 数据库进行交互。我正在使用这篇文章:http ://www.asp.net/web-api/overview/web-api-clients/calling-a-web-api-from-a-net-client

当我通过 PostAsJsonSync 序列化并将文档发送到我的数据库时,我想忽略我的类中的 null 属性,但我不确定如何:

public static HttpResponseMessage InsertDocument(object doc, string name, string db)
    {
      HttpResponseMessage result;
      if (String.IsNullOrWhiteSpace(name)) result = clientSetup().PostAsJsonAsync(db, doc).Result;
      else result = clientSetup().PutAsJsonAsync(db + String.Format("/{0}", name), doc).Result;
      return result;
    }

    static HttpClient clientSetup()
    {
      HttpClientHandler handler = new HttpClientHandler();
      handler.Credentials = new NetworkCredential("**************", "**************");
      HttpClient client = new HttpClient(handler);
      client.BaseAddress = new Uri("*********************");
      //needed as otherwise returns plain text
      client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
      return client;
    }

这是我正在序列化的课程......

class TestDocument
  {
    public string Schema { get; set; }
    public long Timestamp { get; set; }
    public int Count { get; set; }
    public string _rev { get; set; }
    public string _id { get; set; } - would like this to be ignored if null
  }

非常感谢任何帮助。

4

4 回答 4

15

假设您使用 Json.NET 序列化您的对象,您应该使用 JsonProperty 属性的 NullValueHandling 属性

[JsonProperty(NullValueHandling=NullValueHandling.Ignore)]

查看这篇精彩的文章在线帮助以获取更多详细信息

于 2013-03-02T20:43:23.043 回答
13

如果您要发送的所有类的所有属性都需要这种行为(正是这种情况导致我提出这个问题),我认为这会更干净:

using ( HttpClient http = new HttpClient() )
{
    var formatter = new JsonMediaTypeFormatter();
    formatter.SerializerSettings.NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore;

    TestDocument value = new TestDocument();
    HttpContent content = new ObjectContent<TestDocument>( value, formatter );
    await http.PutAsync( url, content );
}

这样就无需向您的类添加属性,并且您仍然不必手动序列化所有值。

于 2014-04-15T08:04:13.800 回答
6

使用 HttpClient.PostAsync

JsonMediaTypeFormatter jsonFormat = new JsonMediaTypeFormatter();
jsonFormat.SerializerSettings.DefaultValueHandling = Newtonsoft.Json.DefaultValueHandling.Ignore;
jsonFormat.SerializerSettings.NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore;

HttpResponseMessage res = c.PostAsync<T>(url, TObj, jsonFormat).Result;
于 2014-05-30T01:42:35.843 回答
3

我不确定你现在可以用PutAsJsonAsync它来做到这一点。但是,如果您能够使用Json.NET ,它可以做到这一点,并且如果有帮助,则存在 NuGet 包。如果您可以使用它,我会将InsertDocument函数重写为:

public static HttpResponseMessage InsertDocument(object doc, string name, string db)
    {
      HttpResponseMessage result;
      string json = JsonConvert.SerializeObject(doc, Formatting.Indented, new JsonSerializerSettings { NullValueHandling = NullValueHandling.Ignore });
      if (String.IsNullOrWhiteSpace(name)) result = clientSetup().PostAsync(db, new StringContent(json, null, "application/json")).Result;
      else result = clientSetup().PutAsync(db + String.Format("/{0}", name), new StringContent(json, null, "application/json")).Result;
      return result;
    }
于 2013-03-02T20:44:36.460 回答