以下脚本有效(至少在我使用的浏览器上)。话虽这么说,最好在发送之前对数据进行编码。如果是这样,怎么样?或者jQuery是自动执行的吗?
var address='1600 Pennsylvania Avenue NW Washington, DC';
$.ajax({
url: 'http://maps.google.com/maps/api/geocode/json',
data: {
address: address,
sensor: false
},
success: function(json){console.log(json)}
});
答案 0 :(得分:0)
话虽如此,最好在发送前对数据进行编码。如果是这样,怎么样?
查看JSON.stringify的discussion(数据) 在[Jquery - How to make $.post() use contentType=application/json?
上