我有一个表单(三组复选框),用户可以在其中选择设备,然后选择要在其上运行的命令。在检查了用户想要运行的设备和命令后,他们会单击一个继续按钮。
现在,我只是将表单数据通过POST发送到另一个PHP页面,其中信息被解码。然后,从DB中提取设备的信息,并将其作为参数插入到使用PHPs EXEC命令运行的TCL脚本中。该脚本需要大约15秒才能返回。
然而,我不想加载另一个页面,我想使用JS $ .blockUI()来阻止页面,提交表单,等待脚本返回,然后显示表单以前返回的内容位于。然后,显然取消阻止UI。
我正在为我的项目使用Zend Framework。我有以下内容:
表格声明:
<form name="runcommands" action="/commands/execute/" method="post">
三个不同的复选框组(这是一个动态生成的表单):
"<input type='checkbox' name='globalcommand.$id' value='$id' />$command<br />";
"<input type='checkbox' name='projectcommand.$id' value='$id' />$command<br />";
"<input type='checkbox' name='device.$id' value='$id' />$hostname<br />";
我的javascript / ajax知识非常非常有限。这是我在JS中做过的第一件事。该网站的其余部分是非常纯粹的PHP / HTML。这是我为JS所尝试的。显然,它不起作用。
<script type="text/javascript">
// Globals
// prepare the form when the DOM is ready
var formd = "";
$(document).ready(function() {
//$('#messageCenter').hide();
//Form Ajax
var options = {
beforeSubmit: beforeSubmit, // pre-submit callback
success: showResponse // post-submit callback
};
$('#runcommands').ajaxForm(options); // bind form using 'ajaxForm'
$.ajax({
type: "post",
url: "/commands/execute/",
data: {
formd: formd,
serverResponse: data.message
},
complete: finishAjax
});
$.unblockUI();
});
function finishAjax (data) {
var ret = data.responseText;
alert(ret);
}
function beforeSubmit (formData, jqForm, options) {
formd = $.param(formData);
$.blockUI();
return true;
}
function showResponse(responseText, statusText, xhr, $form) {
ret = responseText;
alert(ret);
}
</script>
在我的执行PHP页面中,我现在只是回显脚本的输出。那样做也会更好吗?
感谢任何人的任何输入。我被困住了,不知道从哪里开始。
凯文
答案 0 :(得分:1)
两种解决方案:
解决方案一:
目前,unblock被称为Ajax请求的启动,但您想要做的是在返回响应之后执行。将unblock添加到完整函数:
<script type="text/javascript">
// Globals
// prepare the form when the DOM is ready
var formd = "";
$(document).ready(function() {
//$('#messageCenter').hide();
//Form Ajax
var options = {
beforeSubmit: beforeSubmit, // pre-submit callback
success: showResponse // post-submit callback
};
$('#runcommands').ajaxForm(options); // bind form using 'ajaxForm'
$.ajax({
type: "post",
url: "/commands/execute/",
data: {
formd: formd,
serverResponse: data.message
},
complete: finishAjax
});
});
function finishAjax (data) {
var ret = data.responseText;
alert(ret);
$.unblockUI();
}
function beforeSubmit (formData, jqForm, options) {
formd = $.param(formData);
$.blockUI();
return true;
}
function showResponse(responseText, statusText, xhr, $form) {
ret = responseText;
alert(ret);
}
</script>
解决方案2:
通过将async选项设置为false来使ajax同步。这将阻止浏览器:
$.ajax({
type: "post",
url: "/commands/execute/",
async: false,
data: {
formd: formd,
serverResponse: data.message
},
complete: finishAjax
});