我正在尝试编写一个包含newtonsoft JSON.net组件的Web API。
我的代码很简单:
public object GetJsonFile(int id = 1) {
using (StreamReader r = new StreamReader(myJsonFile)) {
string json;
// todo: build logic to only grab latest when an id is supplied
json = r.ReadToEnd();
object jsonObject = JsonConvert.DeserializeObject(json);
return jsonObject;
}
在测试页面时,我得到了可怕的“Type”Newtonsoft.Json.Linq.JToken'是一个不受支持的递归集合数据契约。考虑修改集合'Newtonsoft.Json.Linq.JToken'的定义来删除对本身。”错误。
我已经完成了挖掘工作,并且每个人似乎都建议取消选中“在所有引用的程序集中重用类型”,但这似乎只用于服务引用,我的项目不使用。我确实找到了这样做的地方,但看到我没有引用服务,我无法配置它。
我不是那个在Visual Studio中的家,所以请放轻松我;)
我从未设法弄清楚如何回避这一点。我最终做的是将JSON中的实体创建为类,并让JSON.NET将JSON反序列化为该类。
使用Json.Net设置序列化正确的设置:
对于您的web.api控制器InvalidDataContract异常使用:
public static void Register(HttpConfiguration config)
{
config.Formatters.JsonFormatter.SerializerSettings = new JsonSerializerSettings()
{
Formatting = Formatting.Indented,
TypeNameHandling = TypeNameHandling.Auto,
ContractResolver = new CamelCasePropertyNamesContractResolver(),
NullValueHandling = NullValueHandling.Ignore,
ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Ignore
};
JsonConvert用法的Json.Net默认设置:
JsonConvert.DefaultSettings = () => new JsonSerializerSettings()
{
Formatting = Formatting.Indented,
TypeNameHandling = TypeNameHandling.Auto,
ContractResolver = new CamelCasePropertyNamesContractResolver(),
NullValueHandling = NullValueHandling.Ignore,
ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Ignore
};