1
我將JS數組項傳遞給彈簧控制器。我有這種模式在JS:對象數組來自Ajax的彈簧控制器字符串
function Row() {
this.id = 0;
this.rulingValue = '';
this.rulingType = '';
this.dateStart = '';
this.dateEnd = '';
}
我排陣 - var jsonData = [];
然後我填這個數組。並設置爲
var oMyForm = new FormData();
oMyForm.append("items", jsonData);
在Spring控制器我希望這個數組一樣List<Item>
@Data
public class Item {
private String id;
private String rulingValue;
private String rulingType;
private String dateStart;
private String dateEnd;
}
@RequestParam("items") List<Item> items
但我的項目參數作爲字符串到達。我怎樣才能得到這個數組像List<Item>
?
使用'@ RequestBody'。 '@ RequestParam'查詢字符串。 – sura2k