下面是我的Spring Boot应用程序的正常行为: 用户可以在表单中填写常规信息的登录页(http://localhost:8085/customers/generalInfo/)。提交后,用户将被重定向到财务详细信息页面(http://localhost:8085/customers/financialDetails),在此他可以填写另一个表单并提交结果。 我的控制器类如下: GeneralInfoController.java @Controller
@RequestMapping("/customers/generalInfo")
public class Custo
我试图通过脚本将一个变量从html表单传递到servlet,在servlet中,它将连接到DB并获得两个结果变量。
同样,我使用将响应转发回html表单,但我在获取要填充到html表单中的变量时陷入困境。
<title>Insert title here</title>
<script>
function showCustomer() {
var kkk = document.getElementById("num").value;
alert("this is mango1 "+kkk);
var