如何发送带有连接数据的AJAX帖子

时间:2017-04-07 14:38:48

标签: jquery ajax post

我正在尝试做一个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');
  }
});

0 个答案:

没有答案