有没有办法确定 "encoded table id" in Struts 分页?
Is there a way to determine "encoded table id" in Struts pagination?
我在 Struts(1.3) 中成功实现了带有 displaytag 的列表的分页。每个页面的 links 显示如下。
Page 3:
"http://localhost/...&d-49922-p=3&...".
现在我想为此页面手动创建一个 link,为此我需要使用 "d-49922-p" 参数。
但我不确定天气编码 table id(在这种情况下为 49922)是否会一直保持不变或改变,或者我们可以确定这个值。
非常感谢有关此的任何信息。
我找到了答案。
(new ParamEncoder("<Table Id>").encodeParameterName(TableTagParameters.PARAMETER_PAGE))
这将 return 编码的 table id。
"TableTagParameters".
下的所有其他参数可以用同样的方法来确定
我在 Struts(1.3) 中成功实现了带有 displaytag 的列表的分页。每个页面的 links 显示如下。
Page 3: "http://localhost/...&d-49922-p=3&...".
现在我想为此页面手动创建一个 link,为此我需要使用 "d-49922-p" 参数。
但我不确定天气编码 table id(在这种情况下为 49922)是否会一直保持不变或改变,或者我们可以确定这个值。
非常感谢有关此的任何信息。
我找到了答案。
(new ParamEncoder("<Table Id>").encodeParameterName(TableTagParameters.PARAMETER_PAGE))
这将 return 编码的 table id。 "TableTagParameters".
下的所有其他参数可以用同样的方法来确定