gpt4 book ai didi

c# - 托管 Blazor WASM GetFromJsonAsync : The JSON value could not be converted to System. Collections.Generic.IEnumerable`

转载 作者:行者123 更新时间:2023-12-03 08:19:42 26 4
gpt4 key购买 nike

我尝试过挖掘和调试,但似乎无法弄清楚为什么 Http.Json.GetFromJsonAsync 无法转换。我得到的错误如下(删节)

blazor.webassembly.js:1 crit: Microsoft.AspNetCore.Components.WebAssembly.Rendering.WebAssemblyRenderer[100]
Unhandled exception rendering component: The JSON value could not be converted to System.Collections.Generic.IEnumerable`1[Onero.Shared.StudentDTO]. Path: $ | LineNumber: 0 | BytePositionInLine: 1.
System.Text.Json.JsonException: The JSON value could not be converted to System.Collections.Generic.IEnumerable`1[Onero.Shared.StudentDTO].

这是我的代码:

// In the blazor wasm client

public async Task<IEnumerable<StudentDTO>> GetStudentsAsync()
{
return await http.GetFromJsonAsync<IEnumerable<StudentDTO>>("api/Students");
}

// My controller
[HttpGet]
public async Task<ActionResult<IEnumerable<StudentDTO>>> GetStudents()
{
return await _context.Students
.Select(x => StudentToDTO(x))
.ToListAsync();
}

// My classes
public class StudentDTO
{
public long ID { get; set; }
public string Name { get; set; }
public ICollection<ExamScores> Results { get; set; }
}

public class Student
{
public long ID { get; set; }
public string Name { get; set; }
public ICollection<Guardian> Guardians { get; set; }
public ICollection<ExamScores> Results { get; set; }
}

public class ExamScores
{
public long ID{ get; set; }
public long StudentId { get; set; }
public Student Student { get; set; }
public Exam ExamType { get; set; }
public double Score { get; set; }
}

// Startup.cs ConfigureServices
services.AddDbContext<ResultsContext>(opt =>
opt.UseSqlite(Configuration.GetConnectionString("FirstPrototype")));

services.AddControllersWithViews()
.AddJsonOptions(
x => x.JsonSerializerOptions.ReferenceHandler = ReferenceHandler.Preserve
);

// Context
public class ResultsContext : DbContext
{
public ResultsContext(DbContextOptions<ResultsContext> options)
: base(options)
{

}
public DbSet<ExamScores> ResultsList { get; set; }
public DbSet<Student> Students { get; set; }
public DbSet<Guardian> Guardians { get; set; }
}

当我尝试记录 Controller 方法时,我从 _context 返回的实际上是

System.Collections.Generic.List`1[Onero.Shared.StudentDTO]

我不确定这是否是我设置数据库和迁移的问题?也许它与我的 ConfigureServices 中的 JsonSerializerOptions 有关?但如果确实如此,那么为什么我的 Controller 方法报告我正在取回对象列表,但我的客户端无法反序列化它?我很感激帮助/建议。谢谢

最佳答案

事实上,是的,它确实与 JsonSerializerOptions 有关。我必须对客户端中的 GetStudentsAsync 方法执行以下操作:

public async Task<IEnumerable<StudentDTO>> GetStudentsAsync()
{
var options = new JsonSerializerOptions()
{
ReferenceHandler = ReferenceHandler.Preserve,
PropertyNameCaseInsensitive = true
};
return await http.GetFromJsonAsync<IEnumerable<StudentDTO>>("api/Students", options);
}

我从 this 收集到的然后我突然想到,也许属性名称由于大小写不匹配,这就是为什么我将 PropertyNameCaseInsensitive 设置为 true。

关于c# - 托管 Blazor WASM GetFromJsonAsync : The JSON value could not be converted to System. Collections.Generic.IEnumerable`,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68246021/

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