我正在尝试做一个ajax POST传递数据的多个参数,以下格式是否正确?
$.ajax({
type: "POST",
url: 'http://www.citroen.it/_/Layout_Citroen_PointsDeVente/getStoreList',
dataType: "jsonp",
data: {
'lat': +45.66 + 'long': +12.23 + 'page': +6149 + 'version': 43 + 'order': 2 + 'area': 150 + 'ztid': '' + 'attribut': '' + 'brandactivity': ''
},
success: function(data) {
console.log(data)
},
error: function() {
console.log('errore');
}
});