我有一个非常复杂的表单,其中包含多个标签。每个选项卡都包含一个唯一的Plupload实例(用于上传多个图像)。该表格允许用户上传医学图像“案例”,其中每个案例由多个成像“研究”(例如CT扫描)组成,每个研究包含多个图像。
当用户点击“提交”按钮时,我用jQuery拦截了点击,因为我需要执行以下操作:
在我提交给表单提交的函数中,我有以下代码片段:
var case_id;
// Code to check the required fields are entered
....
// Get the case id number from the server
$.get('ajax/unique-case-id').done(function(data){
case_id = data;
});
// do something with case_id and other things. MUST happen after the ajax call
....
// if there was a problem uploading the images, stop the form from submitting
if (problem_occured) {
return false;
}
使用我当前的逻辑,我需要脚本暂停UNTIL它获取case_id。这在jQuery 1.8之前是可能的,但$ .ajax()async:false属性已被弃用。
我的问题是双重的:
你可能想知道为什么case_id如此重要。 plupload实例在表单提交之前进行上传,并且需要上传目录。我希望上传的图像进入我服务器上名为case_id的文件夹。这将让服务器上的PHP脚本在获得其余的表单POST数据后弄清楚如何处理它们。
答案 0 :(得分:2)
这是一个非常常见的“问题”,可以通过适当地使用回调来轻松解决。
$("#submitButton").click(function (event) {
event.preventDefault(); //Don't submit the form, we'll submit it manually.
var case_id;
// Code to check the required fields are entered
....
// Get the case id number from the server
$.get('ajax/unique-case-id').done(function(data){
case_id = data;
// do something with case_id and other things. MUST happen after the ajax call
....
// if there was a problem uploading the images, stop the form from submitting
if (problem_occured) {
alert("something went wrong");
} else {
$("#referenceToTheForm").submit();
}
});
});
长话短说,在$ .get调用的回调中保持“处理问题或提交表单”本质上会导致脚本“暂停”直到它获取数据。然后你可以使用像spin.js这样的东西给用户一个良好的等待体验,直到它完成。