我在隐藏字段中设置“Id”。我应该怎么做才能在 Scriptlet 中获得这个值?
我有这个领域
<html:hidden name="ConfigForm" property="ConfigId" styleId="ConfigId"/>
我想在我的脚本中有这个字段的值,它有一些像这样的代码行
<% Integer ConfigId =1;
ConfigDTO = getConfig(ConfigId, null); %>
现在我通过硬编码的 ConfgiId 但我需要用隐藏的字段值替换它。——</p>