获取json数组并在另一页中追加数据

时间:2017-10-25 10:38:28

标签: javascript jquery json ajax

我正在尝试使用jquery将json数组传递到另一个页面,并且在另一个页面上我想将数据绑定到相应的元素。这是我的ajax请求:

$.ajax({
    type: "GET",
    url: 'url of the php page',
    data: {'json':jsondata},
    dataType :'json',
    async: false,
    encode: true
}).done(function(data) {
    window.location.href = 'anotherpageurl?res='+encodeURIComponent(JSON.stringify(data));
});

这是我收到的网址的json响应:

{
"data": [
{
"full_name": "xxxx",
"employee_id": "xxxxx",
"imageUrl": "xxxx",
"dname": "xxxx"
},
{
"full_name": "xxxxx",
"employee_id": "xxxxx",
"imageUrl": "xxxx",
"dname": "xxxx"
}
]
}

1 个答案:

答案 0 :(得分:0)

使用数据而非数据(数据)

以下信息可能有助于您进行网址编码,请参阅下文

https://en.wikipedia.org/wiki/Percent-encoding