-1
我收到了struts 2的一個非常奇怪的問題,我使用s:iterator來提取問題列表,但是當我使用s :屬性標籤,只有ID會顯示,沒有別的。有4列,id,groupid,subgroupid和questiontxt,但我似乎只能夠顯示ID。我測試了列表,它包含所有的列,它已經從數據庫中正確保存了它們,但是我能夠在屏幕上顯示的唯一東西就是ID。Struts 2只在jsp上使用s來顯示mysql表中的一行:iterator
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@ taglib prefix="s" uri="/struts-tags" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<link href=<s:url value="resources/welcome.css" /> rel="stylesheet" type="text/css" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Welcome</title>
</head>
enter code here
<body>
<table>
<s:iterator value="listQuestionsBasic" var="question">
<tr>
<td>
<s:property value="#question.id" />
</td>
</tr>
<tr>
<td>
<s:property value="#question.groupid" />
</td>
</tr>
<tr>
<td>
<s:property value="#question.subgroupid" />
</td>
</tr>
<tr>
<td>
<s:property value="#question.questiontxt" />
</td>
</tr>
</s:iterator>
</table>
</body>
</html>