微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

C#数组错误端点对发送值有要求

如何解决C#数组错误端点对发送值有要求

我正在尝试向API端点发送一个值,但出现此错误

"The type of \\\"value\\\" is incorrect,expected type: Array\"

有人可以指出我出了什么问题吗?

foreach (var book in section.bookIds)
{
    if (exists.Total > 0)
    {
        var firstMatch = exists.Items.First();
        ContentfulBookDetailsResponse matchingPoco = ContentfulModelUtil.GetPoco<ContentfulBookDetailsResponse>(firstMatch);

        ContentfulBookPageCreateRequest updateRequest = await ConstructBookRequest(matchingPoco);

        updateRequest.Fields.List = new LocalObjectReferenceField() { En = section.Name };
        await UpdateBook(updateRequest,matchingPoco.Sys.Id,matchingPoco.Title);
    }
}

enter image description here

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。