php jQuery在传递POST数据时在新选项卡中打开页面

ve7v8dk2  于 2022-12-21  发布在  PHP
关注(0)|答案(3)|浏览(147)

我有一个javascript变量称为"列表"。我需要发送它作为一个POST数据到另一个页面,并打开该页面在一个新的标签页(与POST数据存在)。
此代码:

jQuery.post('datadestination.php', list);

发送数据的所有权利,但当然它打开页面在同一标签。
我看到一些类似问题的解决方法,用无形的形式或类似的东西,但我不能让他们工作。有什么简单的解决办法吗?

e0uiprwp

e0uiprwp1#

您可以使用target="_blank”属性发送表单。

<form action="datadestination.php" method="POST" target="_blank" id="myform">
  <input type="hidden" name="list" id="list-data"/>
  <input type="submit" value="Submit">
</form>

然后在JS中:

jQuery('#list-data').val(list);
jQuery('#myform').submit();
nnvyjq4y

nnvyjq4y2#

这是Sergey解决方案的一个实现。

<?php // this is save.php
    session_start();
    // DO NOT just copy from _POST to _SESSION,
    // as it could allow a malicious user to override security.
    // Use a disposable variable key, such as "data" here.
    // So even if someone passed _POST[isAdmin]=true, all that he would do
    // is populate _SESSION[data][isAuthenticated], which nobody reads,
    // not the all-important _SESSION[isAuthenticated] key.
    if (array_key_exists('data', $_POST)) {
        $_SESSION['data']             = $_POST['data'];
        $_SESSION['data.timestamp']   = time();
        // Let us let the client know what happened
        $msg = 'OK';
    } else {
        $msg = 'No data was supplied';
    }
    Header('Content-Type: application/json; charset=utf8');
    die(json_encode(array('status' => $msg)));
?>

在第一页中:

$.post('save.php', { data: list }, function(response){
    if (!response.status) {
        alert("Error calling save");
        return;
    }
    if (response.status !== 'OK') {
        alert(response.status);
        return;
    }
    // We had a response and it was "OK". We're good.
    window.open('datadestination.php');
});

并在datadestination.php中添加修复程序:

if (!array_key_exists('data', $_SESSION)) {
   die("Problems? Did you perchance attempt to reload the page and resubmit?"); 
   // For if he did, then yes, $_SESSION would have been cleared.

   // Same if he is operating on more than one window or browser tab.
}
// Do something to validate data. For example we can use data.timestamp
// to assure data isn't stale.
$age = time();
if (array_key_exists($ts = 'data.timestamp', $_SESSION)) {
    $age -= $_SESSION[$ts];
}
if ($age > 3600) {
    die("Data is more than one hour old. Did someone change server time?!?");
    // I actually had ${PFY} do that to me using NTP + --hctosys, once.
    // My own time zone is (most of the year) exactly one hour past GMT.
}

// This is safe (we move unsecurity-ward):
$_POST = $_SESSION['data'];
unset($_SESSION['data'], $_SESSION['data.timestamp']);
// keep things clean.

// From here on, the script behaves "as if" it got a _POST.

更新

实际上,您可以 * 合并 * save.phpdatadestination.php,并使用一个"保存存根" savepost.php,您可以在其他页面中回收它:

<?php
    session_start();

    // DO NOT just copy from _POST to _SESSION,
    // as it could allow a malicious user to override security.
    // Use a disposable variable key, such as "data" here.
    if (array_key_exists('data', $_POST)) {
        // Timestamp sent by AJAX
        if (array_key_exists('ts', $_POST)) {
            // TODO: verify ts, but beware of time zones!
            $_SESSION['data'] = $_POST['data'];
            Header("Content-Type: application/json;charset=UTF-8");
            die(json_encode(array('status' => 'OK')));
        }
        die("Error");
    }
    // This is safe (we move unsecurity-ward):
    $_POST = $_SESSION['data'];
    unset($_SESSION['data']); // keep things clean.
?>

现在你的电话变成了

$.post('datadestination.php', { data: list, ts: Date.now() }, function(){
    window.open('datadestination.php');
});

datadestination.php(或其他任何地方)中添加

require 'savepost.php';
bvuwiixz

bvuwiixz3#

我建议:
1.用jquery.post()函数传递该列表,并将其保存在SESSION数组中。
1.使用window.open()函数打开具有相同文件/地址/URL的新选项卡。
1.从SESSION阵列中检索保存的数据。
我觉得这很简单明了。

相关问题