gpt4 book ai didi

jsp - 如何通过struts从一个jsp打开另一个

转载 作者:行者123 更新时间:2023-12-04 23:53:11 25 4
gpt4 key购买 nike

如何通过Struts打开一个jsp从另一个

例如,

I have 2 JSPs, Page1.jsp & Page2.jsp.

Page1.jsp does not contain any Form.

Page2.jsp contains a Form.

I need a link on Page1.jsp which when clicked takes me to Page2.jsp.

需要添加struts-config.xmlActionmappings是什么?


更新:

我尝试在 Page1.jsp 中添加这些行

<html:link page="Page2.do">Page2</html:link>

<a href="Page2.do">Page2</a>

struts-config.xml中,下面的Action-mapping

<action path="/Page2"
parameter="Page2.jsp"
type="org.apache.struts.actions.ForwardAction"/>


The "href" one works, while the one with "html:link" does not take me to Page2.jsp.

Why is that?

最佳答案

使用 struts 版本 1.x(在 Page1.jsp 中):

<html:link action="/action"> 

然后在 struts-config.xml 中:

<action path="/action" forward="{path to }Page2.jsp"/>

关于jsp - 如何通过struts从一个jsp打开另一个,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4015579/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com