问题
I am having a jsp form where I have to mark attendance for each employee and store the results in the database. My jsp snippet for marking attendance is as follows:
<portlet:defineObjects />
<%
List<Employee> EmployeeAttendanceDetails = MISPortalActionUtil.getEmployeeData();
%>
<portlet:renderURL var="viewMarkAttendanceURL"/>
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>mark attendance</title>
</head>
<body>
Mark Attendance for Today:
<%= new java.util.Date() %>
<portlet:actionURL name="updateDailyAttendance" var="updateDailyAttendanceURL" />
**<aui:form name="updateDailyAttendance" action="<%=updateDailyAttendanceURL.toString()%>" method="post" >
<portlet:renderURL var="viewEmployeeDataURL"/>
<liferay-ui:search-container delta="20" emptyResultsMessage="No Results Found">
<liferay-ui:search-container-results total="<%= EmployeeAttendanceDetails .size() %>"
results="<%= ListUtil.subList(EmployeeAttendanceDetails , searchContainer.getStart(), searchContainer.getEnd()) %>" />
<liferay-ui:search-container-row modelVar="search"
className="com.test.mis.portal.model.Employee">
<liferay-ui:search-container-column-text name='Employee Name' value='<%=String.valueOf(search.getEmpFname()) + " " + String.valueOf(search.getEmpLname())%>' href="" />
<liferay-ui:search-container-column-text name='Employee Id' value='<%=String.valueOf(search.getEmpId())%>' href="" />
<liferay-ui:search-container-column-text name = "Attendance Status" >
<label>Present</label><input type = "radio" name ='updateattendance + <%=String.valueOf(search.getEmpId())%>' value = "present" />
<label>Absent</label><input type = "radio" name= 'updateattendance + <%=String.valueOf(search.getEmpId())%>' value = "absent"/>
</liferay-ui:search-container-column-text>
</liferay-ui:search-container-row>
<liferay-ui:search-iterator searchContainer="<%=searchContainer %>" paginate="<%=true %>" />
</liferay-ui:search-container>
<input type = "submit" value = "Update"/>
</aui:form>**
And I use the following functions to mark the attendance: public void updateDailyAttendance(ActionRequest areq, ActionResponse aRes) throws Exception{
int totalEmployees = EmployeeLocalServiceUtil.getEmployeesCount();
String attendanceValue = getAttendanceValue(areq);
***for (int i = 0; i < totalEmployees; i++) {
long attPKey = CounterLocalServiceUtil.increment(Employee.class.getName());
Attendance newAttendanceInstance = new AttendanceImpl();
newAttendanceInstance.setAttId(attPKey);
newAttendanceInstance.setAttStatus(attendanceValue);
AttendanceLocalServiceUtil.addAttendance(newAttendanceInstance);
}***
}
private String getAttendanceValue(ActionRequest areq) {
Enumeration parameters = areq.getParameterNames();
while (parameters.hasMoreElements()) {
String parameterName = parameters.nextElement().toString();
if (parameterName.startsWith("updateattendance")) {
return areq.getParameter(parameterName);
}
}
throw new IllegalStateException("Parameter updateattendance is not found");
}
The problem that I am facing is that whatever attendance I mark for the first employee (Present/Absent) the same is stored for the other employees. The error I think is in the above for loop which I have italicized. How should I rectify this code such that for each employee the correct attendance status is stored?
回答1:
Considering your jsp is correct, the code
<input type = "radio" name ='updateattendance + <%=String.valueOf(search.getEmpId())%>' value = "present" />
will create an array of properties named like updateattendance101, updateattendance102, updateattendance201, updateattendance301 etc
The code
if (parameterName.startsWith("updateattendance")) { return areq.getParameter(parameterName);
gets the first matching property, therefore you get the same value always. So what you need to do, is use the same array you used to feed the search-container (array 'EmployeeAttendanceDetails' ), iterate through all it's objects and use the 'getEmpId' id to exact match the property.
Secondly, I see some bad practices on the usage of the ServiceBuilder.
- Are you sure you want to create a new Employee, instead of updating the existing ones ?
- Even if you want to create/update an Employee Entry, you should make a wrapping function in AttendanceLocalServiceImpl, instead of manually editing all attributes/ increase persistence counters etc inside your client's code
Edit : you can replace your posted java code with this, I hope you can understand to do
public void updateDailyAttendance(ActionRequest areq, ActionResponse aRes) throws Exception{
List<Employee> employeeAttendanceDetails = MISPortalActionUtil.getEmployeeData();
for (Employee emp: employeeAttendanceDetails) {
String name = "updateattendance" + Long.toString(emp.getEmpId());
String value = getAttendanceValue(areq, name);
// You don't really need to call call getAttendanceValue, except if you're going to handle the IllegalStateException.
//If this is the case, you can just call :
//String value = areq.getParameter(name);
// Do your stuff with the employee object
}
}
private String getAttendanceValue(ActionRequest areq, String paramName) {
Enumeration parameters = areq.getParameterNames();
while (parameters.hasMoreElements()) {
String parameterName = parameters.nextElement().toString();
if (parameterName.equals(paramName)) {
return areq.getParameter(parameterName);
}
}
throw new IllegalStateException("Parameter updateattendance is not found");
}
Edit 2: replace
name ='updateattendance + <%=String.valueOf(search.getEmpId())%>'
with
name ='updateattendance<%=String.valueOf(search.getEmpId())%>'
来源:https://stackoverflow.com/questions/15876090/passing-values-to-action-class-from-radio-button