无法反序列化当前 JSON 数组

Cannot deserialize the current JSON array

我正在尝试从 MVC 项目调用 Web API 来检查员工是否有权访问该应用程序。我调用 Web API 传递员工编号和应用程序名称。如果他们有权访问,它将 return EmployeeId、AppName 和 AppRoll。如果他们没有访问权限,它将发回一个空 body。

我创建了一个名为 EmployeeAccess 的模型,它具有 3 个属性以及调用 API 的方法。当我 运行 它时,我得到一个错误 "Cannot deserialize the current JSON array"。

在上面 link 的示例中,他们没有对创建 JSON objects 做任何事情。任何人都知道我错过了什么或做错了什么?

HomeController (一些值是用于测试的硬编码)

public async System.Threading.Tasks.Task<ActionResult> Index()
{
    string employeeId = "762041";
    string appName = "AppAdmin";

    var objEmployeeAccess = new EmployeeAccess();
    EmployeeAccess employeeAccess = await objEmployeeAccess.GetEmployeeAccess(employeeId, appName);

    return View();
}

Class

public class EmployeeAccess
{
    HttpClient client = new HttpClient();

    public string AppName { get; set; }
    public string Emp { get; set; }
    public string Role { get; set; }

    internal async Task<EmployeeAccess> GetEmployeeAccess(string employeeId, string appName)
    {
        string uri = ConfigurationManager.AppSettings["ApiUri"];

        string endPoint = string.Format("api/v1/GetAppRoleForEmp?EmpID={0}&AppName={1}", employeeId, AppName);

        client.BaseAddress = new Uri(uri);
        client.DefaultRequestHeaders.Accept.Clear();
        client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));

        EmployeeAccess employee = null;
        HttpResponseMessage response = await client.GetAsync(endPoint);
        response.EnsureSuccessStatusCode();

        if (response.IsSuccessStatusCode)
        {
            employee = await response.Content.ReadAsAsync<EmployeeAccess>();
        }
        return employee;
    }
}

这是 return 找到的内容。

这是实际错误。

更新 - 更改为使用 List<> 使其工作

public async System.Threading.Tasks.Task<ActionResult> Index()
{
    string employeeId = "762041";
    string appName = "AppAdmin";

    var employeeAccess = new EmployeeAccess();
        List<EmployeeAccess> listEmployee = await employeeAccess.GetEmployeeAccess(employeeId, appName);

    return View();
}


public class EmployeeAccess
{
    HttpClient client = new HttpClient();

    public string AppName { get; set; }
    public string Emp { get; set; }
    public string Role { get; set; }

    internal async Task<EmployeeAccess> GetEmployeeAccess(string employeeId, string appName)
    {
        string uri = ConfigurationManager.AppSettings["ApiUri"];

        string endPoint = string.Format("api/v1/GetAppRoleForEmp?EmpID={0}&AppName={1}", employeeId, appName);

        client.BaseAddress = new Uri(uri);
        client.DefaultRequestHeaders.Accept.Clear();
        client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));

        HttpResponseMessage response = await client.GetAsync(endPoint);
        response.EnsureSuccessStatusCode();

        List<EmployeeAccess> listEmployee = new List<EmployeeAccess>();
        if (response.IsSuccessStatusCode)
        {
            listEmployee = await response.Content.ReadAsAsync<List<EmployeeAccess>>();
        }

        return listEmployee;
    }
}

您正在尝试将 JSON array 反序列化为 JSON object,但出现错误。为避免这种情况,只需更改此行

await response.Content.ReadAsAsync<EmployeeAccess>();

进入这个

await response.Content.ReadAsAsync<List<EmployeeAccess>>();

得到结果后,取第一个元素和 return 你的对象。

问题是您的控制器需要一个对象,但 API 传回一个只有一个条目的数组。

您可以更改 API 以便返回单个文档

{
    "AppName": "AppAdmin",
    "Emp": "00762041",
    "Role": "APPADMIN"
}

或者您可以更改处理方式,使其处理数组并获取第一个元素。