Я хочу показать данные через al oop над массивом формы.
Вот форма
public class GroupSettingForm extends BaseForm {
private Integer groupId;
private List<String> employeeList;
public Integer getGroupId() {
return groupId;
}
public void setGroupId(Integer groupId) {
this.groupId = groupId;
}
public List<String> getEmployeeList() {
return employeeList;
}
public void setEmployeeList(List<String> employeeList) {
this.employeeList = employeeList;
}
}
Вот js /
function getSelectedData() {
console.log($('#groupId').val());
$.ajax({
type : "GET",
url : "/MSS/setting/groupSetting/edit?groupId=" + $('#groupId').val(),
dataType : "json",
success : function(data) {
$('#groupId').val(data[0].groupId);
$('#groupName').val(data[0].groupName);
$('#employeeList').val(data[0].empList);
},
error : function(XMLHttpRequest, textStatus, errorThrown) {
}
});
}
Проблема в том, как я могу l oop over employeeList в jsp.
Сотрудник всегда пуст. Пожалуйста, помогите.
Вот вывод ajax данных.
Вот код html, где я хочу дисплей.
<c:forEach items="${employeeList}" var="employee">
<div class="col-sm-12">
<a class="delete_emp btn btn-sm btn-outline-default pl-0"><c:out value="${employee}" /><i class="fa fa-times ml-1" aria-hidden="true"></i></a>
</div>
</c:forEach>