使用 JSP 将数据库中的自动增量 ID 显示到 html 文本字段中
Show auto-increment ID from database into a html text-field with JSP
这个问题早在 2016 年就有人提出过,但提出这个问题的人没有得到答案。那么有没有人知道如何获得这个已经是 AI 的 ID,但我需要它以 html 形式自动显示。
所以我要插入一个仍然没有分配 ID 的新用户。
<h3>Kreirati korisnika</h3>
<form action="kreiraj_korisnika.jsp">
<div class="form-group" >
<label for="id_clan" >ID:</label>
<input type="text" class="form-control" id="id_clan" name="id_clan">
</div>
首先你必须获得下一个可能的 Id。
检查此说明:
https://dev.mysql.com/doc/refman/8.0/en/getting-unique-id.html
然后你就可以处理数据了:
文本框:
<input type="text" class="form-control" id="id_clan" name="id_clan" value="<%= yourId%>"/>
JSP代码:
<%! String yourId; %>
<%
//do some code to receive your data
yourId="YOUR_ID";
%>
查看此处了解更多信息:
Assign value to HTML textbox from JSP
或
这个问题早在 2016 年就有人提出过,但提出这个问题的人没有得到答案。那么有没有人知道如何获得这个已经是 AI 的 ID,但我需要它以 html 形式自动显示。 所以我要插入一个仍然没有分配 ID 的新用户。
<h3>Kreirati korisnika</h3>
<form action="kreiraj_korisnika.jsp">
<div class="form-group" >
<label for="id_clan" >ID:</label>
<input type="text" class="form-control" id="id_clan" name="id_clan">
</div>
首先你必须获得下一个可能的 Id。 检查此说明:
https://dev.mysql.com/doc/refman/8.0/en/getting-unique-id.html
然后你就可以处理数据了:
文本框:
<input type="text" class="form-control" id="id_clan" name="id_clan" value="<%= yourId%>"/>
JSP代码:
<%! String yourId; %>
<%
//do some code to receive your data
yourId="YOUR_ID";
%>
查看此处了解更多信息: Assign value to HTML textbox from JSP
或