Dojo request.post发送空体

时间:2014-08-29 13:53:30

标签: php ajax post dojo

我在Dojo 1.10下

我想用request.post()将一些数据发布到php。请求已发送,但POST正文为空。 这里的数据是一个JSON字符串。 该请求不是跨域的。

我总是想知道Dojo如何处理查询字符串中的键,没有关于这些键的信息可以在文档中找到,除了" query"但是在帖子请求中没有阅读。

sendPostRequest : function(url, data, sync)
        {
            var options = 
            {
                data : data,
                sync : sync,
                handleAs : "json"
            };


            return request.post(url, options)
            .then(function(response){
                _content = response;
                return _content;
            },
            function (error)
            {
                console.error(error);
            });

转储$ _POST变量:

array(size=0) empty

0 个答案:

没有答案