将嵌套集合发布到Web API

时间:2015-07-23 07:06:29

标签: c# asp.net-web-api binding icollection

我试图将复杂类型的对象发布到web api。在web api端,当方法接收到object参数时,除了从ICollection派生的集合之外,每个属性都被正确设置。

以下是我的示例课程:

public class MyClass
{
    private int id;

    public int Id
    {
        get { return id; }
        set { id = value; }
    }

    private MyCollection<string> collection;

    public MyCollection<string> Collection
    {
        get { return collection; }
        set { collection = value; }
    }
}

public class MyCollection<T> : ICollection<T>
{
    public System.Collections.Generic.List<T> list;

    public MyCollection()
    {
        list = new List<T>();
    }

    public void Add(T item)
    {
        list.Add(item);
    }

    public void Clear()
    {
        list.Clear();
    }

    public bool Contains(T item)
    {
        return list.Contains(item);
    }

    public void CopyTo(T[] array, int arrayIndex)
    {
        list.CopyTo(array, arrayIndex);
    }

    public int Count
    {
        get { return list.Count; }
    }

    public bool IsReadOnly
    {
        get { return false; }
    }

    public bool Remove(T item)
    {
        list.Remove(item);
        return true;
    }

    public IEnumerator<T> GetEnumerator()
    {
        return list.GetEnumerator();
    }

    System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator()
    {
        return list.GetEnumerator();
    }
}

这是我的api控制器:

public class ValuesController : ApiController
{
    // GET api/values
    public IEnumerable<string> Get()
    {
        return new string[] { "value1", "value2" };
    }

    // GET api/values/5
    public string Get(int id)
    {
        return "value";
    }

    // POST api/values
    public string Post([FromBody]MyClass value)
    {
        return "The object has " + value.Collection.Count + " collection item(s).";
    }

    // PUT api/values/5
    public void Put(int id, [FromBody]string value)
    {
    }

    // DELETE api/values/5
    public void Delete(int id)
    {
    }
}

这是我在客户端的测试方法:

        function Test() {
        var obj = {
            'Id': '15',
            'Collection': [{
                '': 'item1'
            }, {
                '': 'item2'
            }]
        };
        $.post(serviceUrl, obj)
        .done(function (data) {
            alert(data);
        });

On Web Api post方法Id变为15但Collection的长度为0.

但是当我从MyCollection将集合类型更改为ICollection时。收藏的长度为2。

为什么我使用MyCollection时会收到零长度的收藏?它实施错了吗?我怎样才能使它工作?

1 个答案:

答案 0 :(得分:6)

我认为你需要创建一个这样的模型绑定器:

Post([ModelBinder(typeof(MyClassModelBinder))] MyClass myClass)

如何操作请阅读以下文章: parameter binding in aspnet web api