JSP页面重新加载问题

发布于 2024-12-04 14:35:59 字数 286 浏览 0 评论 0原文

我在一页上有一个超链接,显示 results.jsp。当我单击该链接时,它会转到另一个页面(例如 show_article.jsp),并将路径参数附加到 url 上。在此页面上,我使用 url 中传递的路径读取文本文件,并将该文件显示为带有 <%= stringName %> 的字符串。在网页上。

现在,当我返回 results.jsp 页面并再次单击超链接或重新加载 show_article.jsp 时,它会显示先前的字符串与在 show_article.jsp 页面上读取的新文本字符串连接。

你能帮我吗?

I have a hyperlink on one page say results.jsp. When I click on the link, it goes to another page say show_article.jsp with the path parameter appended to the url. On this page I read the text file with using the path passed in the url and display this file as a string with <%= stringName %> on the webpage.

Now when I go back to results.jsp page and click on the hyperlink again or reload show_article.jsp, it displays previous string concatenated with the new text string read on show_article.jsp page.

can you please help me with this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

天邊彩虹 2024-12-11 14:35:59

以下是转到 show_article.jsp 的代码片段。originalQuery 是一个带空格的字符串,path 是一个字符串,其中包含要显示其内容的文本文档的路径。

<% ... link = "show_article.jsp?query="+ originalQuery.replace(" ", "+") + "&path=" + path;%>
<a href=<%=link%>> Document Name </a>

首先单击文档名称后,我会看到“文档内容”。然后,当我刷新页面时,我看到“文档内容文档内容”

Following is the code snippet which goes to show_article.jsp originalQuery is a string with spaces and path is a string that contains path of the text document whose contents are to be shown.

<% ... link = "show_article.jsp?query="+ originalQuery.replace(" ", "+") + "&path=" + path;%>
<a href=<%=link%>> Document Name </a>

After clicking on Document Name first I see "Document Contents". Then when I refresh the page I see "Document Contents Document Contents"

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文