我有这个网页,我使用form:input
如下
</spring:bind> <spring:bind path="questionBeanPV.questions[148].questionDependency">
<form:hidden path="${status.expression}" id="quesDep148" />
这里questionBeanPV.questions[148]
是一张地图,所以我把第148个关键字的对象绑定到了该字段。
到现在为止一切都很好。
但现在我必须使用jQuery-Ajax
在网页上动态填充更多字段。
我如何绑定它们?它可以实现吗?
所以我不必做request.getParameter("DynamicallyLoadedFields")
?