gpt4 book ai didi

java - 动态检索对象、Spring MVC、JSP

转载 作者:太空宇宙 更新时间:2023-11-04 12:39:56 25 4
gpt4 key购买 nike

我有jsp页面用于创建一个新问题(我的项目中的实体),使用这部分代码:

   <div class="form-group">
<nobr><label>Project</label></nobr>
<c:if test="${!empty userProjects}">
<sf:select path="projectId" cssClass="selectpicker">
<c:forEach items="${userProjects}" var="project">
<sf:option value="${project.id}">${project.nameOfTheProject}</sf:option>
</c:forEach>
</sf:select>
</c:if>
<c:if test="${empty userProjects}">
There are no projects
</c:if>
</div>

我选择将当前问题加入到上面选定的项目中的项目。同一页面上的下一个:

   <div class="form-group">
<nobr><label>Who will fix the issue?</label></nobr>
<c:if test="${!empty project.usersInTheCurrentProject}">
<sf:select path="fixerId" cssClass="selectpicker">
<c:forEach items="${project.usersInTheCurrentProject}" var="user">
<sf:option value="${user.id}">${user.firstName} ${user.lastName}</sf:option>
</c:forEach>
</sf:select>
</c:if>
<c:if test="${empty project.usersInTheCurrentProject}">
There are no users
</c:if>
</div>

我需要之前选择项目,以便从该项目获取用户列表,我该如何实现?谢谢。

最佳答案

您需要使用ajax调用来获取用户列表和 Controller 通过json响应返回列表。

<div class="form-group">
<nobr><label>Project</label></nobr>
<c:if test="${!empty userProjects}">
<sf:select path="projectId" cssClass="selectpicker">
<c:forEach items="${userProjects}" var="project">
<sf:option value="${project.id}">${project.nameOfTheProject}</sf:option>
</c:forEach>
</sf:select>
</c:if>
<c:if test="${empty userProjects}">
There are no projects
</c:if>

<div class="form-group">
<label>Who will fix the issue?</label>
<c:if test="${!empty project.usersInTheCurrentProject}">
<sf:select id="fixerId" path="fixerId" cssClass="selectpicker">
</sf:select>
</c:if>
<c:if test="${empty project.usersInTheCurrentProject}">
There are no users
</c:if>
</div>

<script type="text/javascript">
$(document)
.ready(
function() {


$('#projectId')
.change(
function() {

$
.getJSON(
'${getUsersByProject}',
{
projectId : $(
this)
.val(),
ajax : 'true'
},
function(data) {
var html = '<option value="">--Select Users--</option>';
var len = data.length;
for (var i = 0; i < len; i++) {
html += '<option value="' + data[i].id + '">'
+ data[i].firstName + data[i].lastName
+ '</option>';
}
html += '</option>';

$(
'#fixerId')
.html(
html);
});
});


});
</script>

用于获取用户的 Controller 代码。

public List<Users> getAllUsersByProjectId(Model model,
@RequestParam long projectId) {
List<User> userList = null;
try {
//service which will return list of users

} catch (Exception ex) {
model.addAttribute(Constants.EXCEPTIONSTRING, ex);
}
return userList;

}

关于java - 动态检索对象、Spring MVC、JSP,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36919439/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com