我想提交这样的表格:
<input type="text" name="features[txt][1]" value="aaa">
<input type="text" name="features[txt][2]" value="bbb">
<input type="text" name="features[num][5]" value="124">
并接收保存操作中的值:
public static void save(Long id, (??) Map<String, String> features) {
Logger.info("%s", features);
}
Map<String, String> features
- 是获得features
变量的最成功的尝试。记录器说它等于{num=null, txt=null}。总之,Map<String, String> features
是错的。我已经做了很多其他尝试features
,但我刚刚收到null