在浏览器的jsp页面中推送价值的方法是什么? 我在这里尝试了一些代码
enter code here
<table class="data-table-list" width="100%" border="0" cellpadding="0" cellspacing="0">
<col width="50%"/>
<col width="50%"/>
<tbody>
<tr>
<td class="label">
<fmt:message key="label.bodyLanguage"/><fmt:message key="label.postfix"/>
</td>
<td class="data">
<c:out value="${bean.bodyLanguageScore}"/>
</td>
</tr>
</tbody>
</table>
答案 0 :(得分:1)
试试这个,
<%@page import="Your Bean Path" %>
<jsp:useBean id="formHandler" class="Your Bean Path" scope="request">
<jsp:setProperty name="formHandler" property="*"/>
</jsp:useBean>
<table class="data-table-list" width="100%" border="0" cellpadding="0"
cellspacing="0">
<col width="50%"/>
<col width="50%"/>
<tbody>
<tr>
<td class="label">
<fmt:message key="label.bodyLanguage"/><fmt:message key="label.postfix"/>
</td>
<td class="data">
<%=bean.bodyLanguageScore%>
</td>
</tr>
</tbody>
</table>