如何在struts中使用url对参数进行编码?
页面上显示书籍列表。当用户单击一本书时,会打开其详细信息页面。现在的问题是我需要使用详细信息页面 url 对每本书的 id 进行编码。
详细信息页面的链接是/loadDetailForm.do。如果书籍的 id=23,则链接应显示为 /loadDetailForm.do?id=23。
我在这里粘贴代码:
<logic:notEmpty name="BrowseForm" property="books">
<logic:iterate id="book" property="books" name="BrowseForm" type="com.nms.bks.app1.domain.Book">
<p><html:link action="/loadDetailForm" styleClass="btn_blue"><bean:write name="book" property="title"/></html:link></p>
</logic:iterate>
</logic:notEmpty>
谢谢
A list of books is displayed on the page. When a user clicks a book, its detail page is opened. Now the problem is that I need to encode each book's id with the detail page url.
The link to detail page is /loadDetailForm.do. If a book has id=23, the link should appear as /loadDetailForm.do?id=23.
I am pasting code here:
<logic:notEmpty name="BrowseForm" property="books">
<logic:iterate id="book" property="books" name="BrowseForm" type="com.nms.bks.app1.domain.Book">
<p><html:link action="/loadDetailForm" styleClass="btn_blue"><bean:write name="book" property="title"/></html:link></p>
</logic:iterate>
</logic:notEmpty>
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以指定 struts 标记将附加到 url 的参数映射。
请参阅 http://struts.apache.org/1.2.x /userGuide/struts-html.html#link
查看
paramId
、paramName
和paramProperty
属性。另一种方法是使用 JSTL 标记库
http://www.ibm .com/developerworks/java/library/j-jstl0318/
You can specify a map of parameters which the struts tag will append to the url.
See http://struts.apache.org/1.2.x/userGuide/struts-html.html#link
Look at the
paramId
,paramName
andparamProperty
attributes.An alternative would be to use the JSTL tag library
http://www.ibm.com/developerworks/java/library/j-jstl0318/