我的代码包含对服务器的ajax请求,其中有要添加到请求URL的参数。哪个是在jQuery中实现的正确方法?
var param ="roomNumber="+this.roomNumber+"&roomId="+this.roomId+"&UniqueId="+this.surveyData[this.currentIndex].id+"&optionId="+optId;
或
json数据是对的吗?
答案 0 :(得分:0)
在我的示例中,我使用JSON数据格式。您可以使用任何服务器接受
$.ajax({
url: 'http://someUrl',
contentType: 'application/json',
data: {
param1: '345345',
param2: 23523
}
}).done(function(result){
//success
}).fail(function(e){
//error
});