将字典传递给REST API

时间:2015-10-20 20:16:32

标签: dictionary nancy

我需要将密钥对值字典POST到REST API。我正在使用NancyFx框架来绑定参数

服务器端属性:

    public Dictionary<string, string> foo { get; set; }

客户端代码:

            var bar = [];
            bar["one"] = "First";
            bar["two"] = "Second";

            var UserModel = {
                someotherpar: "abc",
                foo: bar
            };
            $.ajax({
                url: 'myEndpoint',
                type: 'POST',
                contentType: 'application/json',
                data: JSON.stringify(UserModel),
                success: function (data, textStatus, jqXHR) {

                   }    
            });

1 个答案:

答案 0 :(得分:0)

这可以使用SortedList而不是Dictionary。