从JS发送Ararylist到Spring Controller

时间:2019-06-01 14:22:58

标签: javascript java

我想将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

这段代码有什么问题吗?

0 个答案:

没有答案