gpt4 book ai didi

.net - ASP .NET - JsonIgnore 似乎不起作用

转载 作者:行者123 更新时间:2023-12-02 17:48:59 31 4
gpt4 key购买 nike

问题

由于循环引用,当返回 json 结果时,我无法序列化 MVC .Net 中的对象。

Self referencing loop detected for type ...

我的实体类:

public class Subscriber
{
[JsonIgnore]
public virtual ICollection<Tag> Tags { get; set; }
}

在 Controller 中:

public JsonResult GetSubscribers(GridRequestModel model)
{
data = ... get data ..
JSON(data, JsonRequestBehavior.AllowGet);
}

似乎 .NET 序列化程序似乎没有考虑 JsonIgnore,因为我仍然收到错误。


尝试的解决方案

我将 Controller 更改为以下内容:

public JsonResult GetSubscribers(GridRequestModel model)
{
data = ... get data ..
JsonSerializerSettings jsSettings = new JsonSerializerSettings();
jsSettings.ReferenceLoopHandling = ReferenceLoopHandling.Ignore;

string json = JsonConvert.SerializeObject(data, Formatting.None, jsSettings);

JSON(json, JsonRequestBehavior.AllowGet);
}

这次我得到:

The RelationshipManager object could not be serialized. This type of object cannot be serialized when the RelationshipManager belongs to an entity object that does not implement IEntityWithRelationships.

另外,不确定我是否可以直接返回字符串,因为我有 JsonResult 的返回类型。 Json(json ... ) 会工作吗?

感谢任何帮助。谢谢!

最佳答案

您还可以使用 System.Web.Extensions 中的 [ScriptIgnore] 属性

 public class SomeClass:Entity
{
public SomeClass() { }
public virtual int TestQuestionTypeValueId { get { return this.Id; } }
[ScriptIgnore]
public virtual TestQuestionTypes TestQuestionTypes { get; set; }
public virtual string QuestionTypeValueText { get; set; }
public virtual decimal QuestionTypeValue { get; set; }
}

关于.net - ASP .NET - JsonIgnore 似乎不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10914823/

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