gpt4 book ai didi

c# - 通过查询字符串将复杂对象传递给 .netcore1.1 Webapi

转载 作者:行者123 更新时间:2023-11-30 23:10:16 25 4
gpt4 key购买 nike

我试图通过查询字符串传递一个复杂的对象,但由于某种原因它不起作用。我有一个看起来像这样的复杂对象:

public class QueryOptions
{
public QueryParameter[] Parameters = new QueryParameter[0];
}

我尝试了几种发送方式,但没有任何效果:

我的 webapi 方法如下所示:

[HttpGet]
[AllowAnonymous]
public async Task<TDTO[]> GetList([FromQuery] QueryOptions queryOptions)
{
return await this._service.GetList(queryOptions);
}

我试过使用和不使用 FromQuery 属性都不起作用。url 查询如下所示:

/api/users?Parameters[0].PropertyName=FirstName&Parameters[0].Value=GTitzy&Parameters[0].FilterCondition=0

我也试过将对象的名称附加到开头。请求已发送,但 queryOptions 始终没有参数。

如何通过查询字符串传递这个复杂的对象?

最佳答案

假设

public class QueryParameter {
public string PropertyName { get; set; }
public string Value { get; set; }
public string FilterCondition { get; set; }
}

您需要更新您的模型以公开[FromQuery] 的公共(public)属性以了解要绑定(bind)到的内容。

public class QueryOptions {
public QueryParameter[] Parameters { get; set; }
}

您还应该考虑阅读 Model Binding: Customize model binding behavior with attributes

关于c# - 通过查询字符串将复杂对象传递给 .netcore1.1 Webapi,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45451232/

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