如何在 JSON 序列化期间删除 $id [英] how to remove $id during JSON serialization

查看:20
本文介绍了如何在 JSON 序列化期间删除 $id的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用 NewtonSoft.JSON.运行时

I am using NewtonSoft.JSON. When running

JsonConvert.SerializeObject(myObject)

它正在向我的 JSON 添加一个 $id 值 - 像这样:

it is adding an $id value to my JSON - like this:

  "$id": "1",
  "BookingId": 0,
  "CompanyId": 0,
  "IsCashBooking": false,
  "PaymentMethod": 0,
  "IsReferral": false,
  "IsReferralPercent": false,
  "ReferralPaymentType": 0,
  "ReferralDues": 0,
  "PassengerId": 0,
  "DepartmentID": 0,
  "CostCenterID": 0,
  "DeadMiles": 0

我们可以用一些 JsonSerializerSettings 或任何其他方法删除这个 $id 吗?

Can we remove this $id with some JsonSerializerSettings or by any other method?

如果是 - 那么如何...

If yes - then how...

推荐答案

我将此代码添加到我的 WebApiConfig 注册方法中,并且我摆脱了 JSON 中的所有 $id.

I added this code to my WebApiConfig register method and I got rid of all $id in JSON.

var json = config.Formatters.JsonFormatter;
json.SerializerSettings.PreserveReferencesHandling = Newtonsoft.Json.PreserveReferencesHandling.None;

这篇关于如何在 JSON 序列化期间删除 $id的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆