我想将arrayList
的{{1}}发送到javaScript
,我已经编写了这段代码,但是它不起作用,当我将其称为spring controller
时,什么也没发生。
function
我的function order_(){
var itemOrder = $('#sortable').sortable("toArray");
$.ajax({
contentType:"application/json;",
type : "POST",
url : "/my_url",
data : (itemOrder),
dataType: "json",
success: function (data) { alert("Mapping Successful") },
failure: function (data) { alert("not working..."); }
});
}
spring controller
这段代码有什么问题吗?