簡體   English   中英

將get參數放入post請求

[英]Put get parameters into post request

我正在通過 ajax post 請求提交表單,但有可能還有一個 get 參數,如果設置了 get 參數,則它必須包含在 post 請求中。 我目前有這個:

jQuery(document).ready(function($) {
   $("#plugin_check").submit(function(e) {
    e.preventDefault(); // avoid to execute the actual submit of the form.

    var form = $(this);
    var actionUrl = form.attr('action');
    
    $.ajax({
        type: "POST",
        cache: false,
        url: actionUrl,
        data: form.serialize(), // serializes the form's elements.
        success: function(data)
        {
          $("#result").html(data); // show response from the php script.
        }
    });
  });  
});

我需要弄清楚如何將 $_GET['datesort'] 放入發布數據中。

你可以試試這個,創建變量來保存日期排序並將其添加到ajax數據

jQuery(document).ready(function($) {
  $("#plugin_check").submit(function(e) {
    e.preventDefault(); // avoid to execute the actual submit of the form.

    var form = $(this);
    var actionUrl = form.attr('action');
    var queryString = window.location.search;
    var urlParams = new URLSearchParams(queryString);
    var datesort = urlParams.get('datesort')

    $.ajax({
      type: "POST",
      cache: false,
      url: actionUrl,
      data: form.serialize() + `&datesort=${datesort}`, // serializes the form's elements.
      success: function(data) {
        $("#result").html(data); // show response from the php script.
      }
    });
  });
});

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM