5

我有这样的课:

public class MyClass {
    private Map<String, String> properties = new HashMap<String, String>();
}

我需要一个表单,用户可以在其中在属性映射中添加键值对。我在此找到的所有 SO 答案仅显示如何使用已知键输入值:

<form:input path="properties['keyName']" />

如何使密钥也可编辑?我有点像...

<form:input path="properties.key" /><form:input path="properties.value" />
4

1 回答 1

2

我得到了这个工作,不得不再次找到这个页面来提供我的答案。

我正在向我的动态添加键和值映射,<form>我的解决方案有一个键输入和一个单独的值输入。然后我在键上注册了一个更改侦听器以更新name值输入。

对我来说,困难的部分是 JQuery 无法访问动态添加的键/值元素的 ID。这意味着如果地图已经被填充,我可以毫无问题地使用 JQuery,但如果它是一个新条目,我会遇到问题并且对值输入的 ID 进行搜索不成功。

为了解决这个问题,我必须遍历 DOM 才能获得值输入。这是我的代码 JSP 代码。

<c:forEach var="points" items="${configuration.pointsValueMap}" varStatus="index">
  <div class="col-xs-3 ">
    <label for="pointMap[${index.index}]">Type:</label>
    <input type="text" id="pointMap[${index.index}]" class="pointMap" value="${points.key}"> : 
  </div>
  <div class="col-xs-3 ">
    <label for="pointMap[${index.index}]-value">Value:</label>
    <input type="text" id="pointMap[${index.index}]-value" name="pointsValueMap[${points.key}]" value="${points.value}">
  </div>
</c:forEach>

这是我的 JS 更新了名称路径的值。

/**
 * Register a listener on the form to detect changing the map's key
 */
$('form').on('change', 'input.pointMap', function(){
    var content = $(this).val();
    var id = $(this).attr('id');
    // have to travel the DOM for added elements to be accessed.
    // JQuery does not have visibility to the IDs of added elements
    $(this).parent().next().children('input').attr('name', 'pointsValueMap['+content+']');
    // if you are not dynamically adding key/values then 
    // all fields are accessible by JQuery and you can update by:
    $('#'+id+'-value').attr('name', 'pointsValueMap['+content+']');
});
于 2016-01-25T22:59:35.043 回答