我收到此错误:Newtonsoft.Json:当我运行我的 azure 函数时检测到属性的自引用循环,但我已经使用此代码添加了一个 startupFile
public override void Configure(IFunctionsHostBuilder builder)
{
JsonConvert.DefaultSettings = () => new JsonSerializerSettings
{
Formatting = Formatting.Indented,
ReferenceLoopHandling = ReferenceLoopHandling.Ignore
};
}