gpt4 book ai didi

javascript - 我需要帮助找到同步 jQuery ajax 的替代方法

转载 作者:行者123 更新时间:2023-11-30 18:02:45 26 4
gpt4 key购买 nike

我有一个非常复杂的表单,其中包含多个选项卡。每个选项卡都包含一个唯一的 Plupload实例(用于上传多张图片)。该表格允许用户上传医学图像“案例”,其中每个案例由多个成像“研究”(例如 CT 扫描)组成,每个研究包含多个图像。

当用户点击“提交”按钮时,我使用 jQuery 拦截点击,因为我需要执行以下操作:

  1. 检查是否输入了必填字段[简单]
  2. 从我的服务器获取一个唯一的 ID 号。每个 Plupload 实例都需要这个 ID 号来知道要上传到哪个目录。

在我调用表单提交的函数中,我有以下代码片段:

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;
}

根据我目前的逻辑,我需要脚本暂停直到它获得 case_id。这在 jQuery 1.8 之前是可能的,但 $.ajax() async : false 属性已被弃用。

我的问题有两个方面:

  1. 有没有办法在我获得所需的 case_id 之前暂停脚本?
  2. 如果没有,知道如何改变我的逻辑来解决这个问题吗?

您可能想知道为什么 case_id 如此重要。 plupload 实例在表单提交之前进行上传,它们需要一个目录来上传。我希望上传的图像进入我服务器上名为 case_id 的文件夹中。这将使服务器上的 PHP 脚本在获取表单 POSTed 数据的其余部分后确定如何处理它们。

最佳答案

这是一个非常常见的“问题”,可以通过适本地使用回调很容易地解决。

$("#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 之类的东西在完成之前为用户提供良好的等待体验。

关于javascript - 我需要帮助找到同步 jQuery ajax 的替代方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16511682/

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