首先,我并不熟悉 JQuery 和 AJAX 。通过尝试我在网上找到的所有内容,我想出了以下代码,老实说,我并不完全了解所有内容。
我希望显示一个引导模式,其中包含单击按钮时数据库中的记录。 我的问题是,当页面加载时,它已经打开了模态而不是单击按钮时。
<button id="modalData">Load Modal</button>
<div class="modal fade" id="modal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<h4 class="modal-title" id="myModalLabel">Plantilla</h4>
</div>
<div class="modal-body">
<table class="table table-striped table-bordered table-hover">
<thead>
<tr>
<th>Item Code</th>
<th>New Item Code</th>
<th>Position</th>
<th>Station</th>
</tr>
</thead>
<tbody>
<c:forEach var="plantilla" items="${sessionScope.plantilla}">
<tr>
<td><c:out value="${plantilla.getItemCode()}"/></td>
<td><c:out value="${plantilla.getNewItemCode()}"/></td>
<td><c:out value="${plantilla.getPosition()}"/></td>
<td><c:out value="${plantilla.getStation()}"/></td>
</tr>
</c:forEach>
</tbody>
</table>
</div>
</div>
</div>
</div>
这是我的剧本:
$("#modalData").click(loadPlantilla());
$.when(loadPlantilla()).done(function() {
$('#modal').modal('show');
});
function loadPlantilla() {
return $.ajax({
url: './TryAjax',
type: 'POST',
error: function() {
alert('Ajax readyState: ' + xhr.readyState + '\nstatus: ' + xhr.status + ' ' + err);
}
});
}
这是我的Servlet:
PlantillaViewDao dao = new PlantillaViewDao();
List<PlantillaView> plantilla = dao.read();
HttpSession session = request.getSession();
session.setAttribute("plantilla", plantilla);
答案 0 :(得分:1)
$。执行你的方法时...这就是为什么它会在pageload上显示。
function loadPlantilla() {
$.ajax({
url: './TryAjax',
type: 'POST'
}).done(function() {
$('#modal').modal('show');
});
}
你必须做这样的事情。
或者,如果你真的想使用$ .when(也许是因为你有多个ajax调用),就像这样:
$("#modalData").click(function() {
$.when(loadPlantilla(), method2(), method3()).done(function() {
$('#modal').modal('show');
});
});
答案 1 :(得分:1)
您立即调用该函数而不是传递引用。
$("#modalData").click(loadPlantilla);
还在您的ajax请求中使用.done
:
function loadPlantilla() {
$.ajax({
url: './TryAjax',
type: 'POST',
error: function() {
alert('Ajax readyState: ' + xhr.readyState + '\nstatus: ' + xhr.status + ' ' + err);
}
}).done(function() {
$('#modal').modal('show');
});
}
快速查看此fiddle。