我需要发布数据,网址只是“v1/wave”,它需要五个参数。我试过这个,但到目前为止它不起作用:
function request(minLat, minLon, maxLat, maxLon, maxNrOfResults, callback){
$.ajax({
url: 'v1/wave?minLat='+minLat+'&minLong='+minLon+'&maxLat='+maxLat+'&maxLong='+maxLong'+&maxNrOfResults='+maxNrOfResults,
type: "GET",
success: function (data) {
callback(data);
if(data.msgCode == LOGIN_SUCCESS){
console.log("request success");
} else if(data.msgCode == LOGIN_FAILED){
console.log("request failed");
}
},
error: function(data) {
handleRequestError(data);
}
})
错误:未捕获的 SyntaxError:url 行中的意外字符串。