jquery – 通过GET将JSON数组传递给MVC Web API

前端之家收集整理的这篇文章主要介绍了jquery – 通过GET将JSON数组传递给MVC Web API前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我知道这个话题有很多答案,但找不到我的问题的解决方案。
我有一个ASP.NET MVC Web API,看起来像这样:
[HttpGet]
    public IList<Country> GetCountryList(List<long> idList)

我试过调用它像这样:

$.ajax({
        dataType: "json",data: JSON.stringify({idList: listOfIds}),type: "GET",url: "api/v1/util/CountryList",success: function (result) {
            alert(result);
        }
    });

然后网址如下所示:

https://localhost/supertext/api/v1/util/CountryList?{%22idList%22:[46,14,62,83,120]}

替代方案:

$.ajax({
        dataType: "json",data: {
            idList: JSON.stringify(listOfIds),}          
        type: "GET",success: function (result) {
            alert(result);
        }
    });

网址:

https://localhost/supertext/api/v1/util/CountryList?idList=%5B46%2C14%2C62%2C83%2C120%5D

这两种方法不工作。

我真的必须发送和接收它作为字符串或使用POST吗?

解决方法

否,不要尝试在GET请求中发送JSON。对于具有正文的其他动词使用JSON,例如POST和PUT。

按照标准方式,通过使用[FromUri]属性装饰您的操作参数:

public IList<Country> GetCountryList([FromUri] List<long> idList)
{
    ...
}

然后只触发AJAX请求:

$.ajax({
    url: 'api/v1/util/CountryList',type: 'GET',data: { idList: [1,2,3] },traditional: true,success: function (result) {
        console.log(JSON.stringify(result));
    }
});

进一步推荐您阅读有关如何在Web API中的模型绑定工作原理:

http://www.asp.net/web-api/overview/working-with-http/sending-html-form-data,-part-1

原文链接:https://www.f2er.com/jquery/183700.html

猜你在找的jQuery相关文章