gpt4 book ai didi

javascript - 如何在不重新加载页面的情况下更新jsp页面上的变量?

转载 作者:行者123 更新时间:2023-12-02 05:27:39 27 4
gpt4 key购买 nike

我有一个jsp页面,其中有几个变量,所有变量每秒都会有不同的值,因为后端的一些代码会更改它们。当用户加载以下页面时,将看到这些数字为零,但随着时间的推移,这些值应该更新并显示在该页面上,所以基本上它应该看起来像一个时间计数器。

这是我的jsp页面:

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="ISO-8859-1">
<title>Process</title>
</head>
<body style="background-color:aquamarine;">
<h2>${info}</h2>
<h2>Number of Xs:</h2>
<h2>${numberOfX}</h2>
<h2>Completed Xs:</h2>
<h2>${completedInfo}</h2>
<h2>Elapsed time:</h2>
<h2>${elapsedTime}</h2>
<form action="/" method="get">
<table>
<tr>
<td><input type="submit" name="button1" value="BACK" /></td>
</tr>
</table>
</form>
</body>
</html>

最佳答案

不幸的是,jsps 会使用模型数据填充一次。

您可以使用服务器端事件: https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events https://www.baeldung.com/spring-mvc-sse-streams

关于javascript - 如何在不重新加载页面的情况下更新jsp页面上的变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56219384/

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