我正在尝试使用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"
}
]
}
答案 0 :(得分:0)