0

我在 Javascript 中有以下变量。我想知道如何将这些数据传递给 PHP,以便我可以在重定向后显示数据的内容。

    postData = {
        'dates_ranges': datesAndRanges,
        'action':'build',
        'output_type': output_type,
        'form_html': formHtml,
        'width': formBuilder.width(),
        'rules':validationRules,
        'theme': theme,
    };
4

3 回答 3

1

使用 JQuery post 方法将数据传递到 PHP 文件:

$.post("/path/to/script.php", postData, function(result) {
    // work with result
});

在 PHP 中使用 $_POST 全局变量来获取变量:

print $_POST['dates_ranges'];
print $_POST['action'];
// ...
于 2012-05-05T20:25:34.843 回答
0

使用 jquery 它变得容易和干净,如下所示:

$.post('script.php', postData, function(response){ 
    // process/display the server response 
});
于 2012-05-05T20:20:40.413 回答
0

您可以使用:

$.post("YOUR_URL", postData, function(response) {
    // handle with response
});

或者:

$.ajax({
  url: YOUR_URL,
  data: postData,
  type: 'post',
  success: function(response) {
    // handle with response
  }
});

在你的 PHP 文件中:

if(isset($_POST) && !empty($_POST)) {
   $d = $_POST;
   echo $d['date_range']; // and so more
}
于 2012-05-06T03:51:32.143 回答