小编典典

同一ajax调用中有多个URL?这可能吗?

ajax

我可以使用ajax调用将数据发送到多个页面吗?我不想为此使用另一个ajax调用。

样例代码:

 $.ajax({
     type: 'POST',
     url: '../services/form_data.php', //can I send data to multiple url with same ajax call.
     data: {
         answer_service: answer,
         expertise_service: expertise,
         email_service: email,
     },
     success: function (data) {
         $(".error_msg").text(data);
     }
 });

阅读 276

收藏
2020-07-26

共1个答案

小编典典

您无法在多个页面中对1个请求使用相同的代码。

但是您可以发送2个请求。它可以通过复制粘贴您的ajax代码或构建一个获取URL并使用此URL发送请求的函数来完成

function sendMyAjax(URL_address){
    $.ajax({
         type: 'POST',
         url: URL_address,
         data: {
             answer_service: answer,
             expertise_service: expertise,
             email_service: email,
         },
         success: function (data) {
             $(".error_msg").text(data);
         }
     });
};
2020-07-26