序列化JSON对象以通过AJAX发送

时间:2013-10-04 14:45:33

标签: javascript php jquery ajax

我正在尝试使用jQuery通过AJAX在JSobject中发送一些数据。

这是json对象。

var cookieData = {
        'land' : document.URL,
        'ref' : document.referrer
    };

对象是存储在cookie中的......通过JSON.stringify(cookieData);

在发送表单并发出AJAX帖子之前,我需要获取对象的属性:

var cookieData = cookie.get(website); //return the cookieData in stringified form.
var submitData = 'tracking=' +cookieData + jQuery("#quoteForm").serialize();

但是,在接收应用程序结束时,数据无法使用,有什么方法可以将它序列化以用于AJAX帖子吗?

接收端是一个PHP应用程序,使用:

处理
$trackingData = json_decode(htmlspecialchars_decode($_POST['tracking']),true);

1 个答案:

答案 0 :(得分:1)

可能是问题是缺失&,试试这个

var submitData = 'tracking=' + cookieData + '&' + jQuery("#quoteForm").serialize();

顺便说一句,哪个错误返回php或json_decode /你用什么来解码json?