Kendo Scheduler - 读取数据源 - 将字符串数组发布到Web API

时间:2014-04-27 21:40:26

标签: c# asp.net-web-api kendo-ui kendo-scheduler

我正在尝试完成以下操作,通过POST请求获取用户的约会,因为我需要发布其他日历ID以获得其他用户的约会。 POST请求将发送到Web API。端点被命中,但calendarIds数组始终为空。

这是数据源定义:

dataSource: new kendo.data.SchedulerDataSource({
                batch: true,
                transport: {
                    read: {
                        url: "/api/MyCalendar/GetAppointments",
                        dataType: "json",
                        type: "POST"
                    },
                    parameterMap: function(data, type) {
                        if (type === "read") {
                            return JSON.stringify(data);
                        }
                    }
                }

这是Web API实现:

[HttpPost]
        public HttpResponseMessage GetAppointments(string[] calendarIds)
        {

// calendarIds is always empty

此请求发布了来自fiddler的内容(textView):

{"calendarIds":["1c78e75f-9516-42cf-a439-271ee997abf1"]}

我不确定这里有什么问题,谢谢你对此有任何帮助。

更新

整个Raw请求:

POST http://xxxxx/api/MyCalendar/GetAppointments HTTP/1.1
Host: ccmspatientmanager
Connection: keep-alive
Content-Length: 56
Accept: application/json, text/javascript, */*; q=0.01
Origin: http://xxxxx
X-Requested-With: XMLHttpRequest
User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.116 Safari/537.36
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Referer: http://xxxxx/Home/MyCalendar
Accept-Encoding: gzip,deflate,sdch
Accept-Language: cs,en-GB;q=0.8,en;q=0.6,de-DE;q=0.4,de;q=0.2,sk;q=0.2
Cookie: ASP.NET_SessionId=flcab5ecct1zaopgqmpz0rhg; .ASPXAUTH=DAED17623F4B0E8F4AB0C3176EC0B73DD29A65650E93DB9664D52C9D23D34C52F1B312923B0A5F8A0D66DAF5C72864BF5827CC667D181DDE5EBC43C651D3C41FBFF315884DD74272E74E4A08D0D2380696B1C5B6

{"calendarIds":["1c78e75f-9516-42cf-a439-271ee997abf1"]}

1 个答案:

答案 0 :(得分:1)

您可以尝试使用[FromBody]属性

注释WebAPI post方法
    [HttpPost]
    public HttpResponseMessage GetAppointments([FromBody]string[] calendarIds)

还要确保在请求正文中传入一个Array而不是Object。 您现在发送的内容{" calendarIds":[" 1c78e75f-9516-42cf-a439-271ee997abf1"]}是一个对象,而WebAPI方法接受一个数组

您可以尝试:

    parameterMap: function(data, type) {
                      if (type === "read") {
                          var values = data.calendarIds.split(','),
                          return JSON.stringify(values);
                      }
                  }