0

我收到此错误:Newtonsoft.Json:当我运行我的 azure 函数时检测到属性的自引用循环,但我已经使用此代码添加了一个 startupFile

  public override void Configure(IFunctionsHostBuilder builder)
        {
            JsonConvert.DefaultSettings = () => new JsonSerializerSettings
            {
                Formatting = Formatting.Indented,
                ReferenceLoopHandling = ReferenceLoopHandling.Ignore
            };
        
        }
4

1 回答 1

0

我通过用属性装饰属性来解决这个问题[IgnoreDataMember]

于 2021-11-14T19:27:35.050 回答