我的链接显示有问题
该链接未转发到 1.jsp 这段代码无法正常
<display:column property="in" sortable="true" href="1.jsp" paramid="1.jsp"/>
工作
the link is not forwording to 1.jsp
this code is not working properly
<display:column property="in" sortable="true" href="1.jsp" paramid="1.jsp"/>
thanx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
单击此链接不会转到 1.html,而是转到 1.jsp,因为您已经定义了 href="1.jsp"。
您已经定义了 paramid="1.html" 但 paramId 采用您想要发送到 href url 的参数名称
,即如果您想要 1.jsp?paramName=paramValue 那么您将定义 paramId="paramName"
读取显示:再次阅读专栏文档以更好地理解它。
Clicking on this link will not go to 1.html but to 1.jsp as you have defined href="1.jsp".
You have defined paramid="1.html" but paramId takes the name of parameter which you want to send to the href url
i.e. if you want 1.jsp?paramName=paramValue then you will define paramId="paramName"
Read the display:column documentation again to understand it better.