Javascript window.open使用POST传递值


78

我有一个JavaScript函数,它使用window.open来调用另一个页面并返回结果。

这是我的代码部分:

var windowFeatures = "status=0, toolbar=0, location=0, menubar=0, directories=0, resizable=1, scrollbars=1";
window.open ('http://www.domain.com/index.php?p=view.map&coords=' + encodeURIComponent(coords), 'JobWindow', windowFeatures);

我现在的问题是,我要传递大量数据供GET处理,而我需要使用POST方法传递它。

我如何转换上面的代码以使用POST方法打开页面,而无需在整个页面上实现表格(页面列出了100个订单以及供应商列表-我正在尝试映射供应商)

Answers:


73

我使用了上述内容的一种变体,但没有打印html,而是构建了一个表单并将其提交给第三方url:

    var mapForm = document.createElement("form");
    mapForm.target = "Map";
    mapForm.method = "POST"; // or "post" if appropriate
    mapForm.action = "http://www.url.com/map.php";

    var mapInput = document.createElement("input");
    mapInput.type = "text";
    mapInput.name = "addrs";
    mapInput.value = data;
    mapForm.appendChild(mapInput);

    document.body.appendChild(mapForm);

    map = window.open("", "Map", "status=0,title=0,height=600,width=800,scrollbars=1");

if (map) {
    mapForm.submit();
} else {
    alert('You must allow popups for this map to work.');
}

1
我认为这document.body.appendChild(mapForm);是多余的,可以安全地省略以免使DOM混乱。
Fedor 2014年

2
@Fedor删除该行将导致Firefox上出现空白弹出窗口
Mancy 15'Nov

@Mancy感谢您的发言,没有考虑过Firefox
Fedor

如果您不担心自己的数据| window.open('xxx_url.php?xxx_var ='+ xxx_var +'&xxx2_var ='+ xxx2_var,'_blank');
露丝

1
@rut作为GET和POST命令发送数据之间存在区别。问题是关于使用POST命令发送数据。
StanE

48

谢谢php-b-grader。我改进了代码,没有必要使用window.open(),已经在form中指定了目标

// Create a form
var mapForm = document.createElement("form");
mapForm.target = "_blank";    
mapForm.method = "POST";
mapForm.action = "abmCatalogs.ftl";

// Create an input
var mapInput = document.createElement("input");
mapInput.type = "text";
mapInput.name = "variable";
mapInput.value = "lalalalala";

// Add the input to the form
mapForm.appendChild(mapInput);

// Add the form to dom
document.body.appendChild(mapForm);

// Just submit
mapForm.submit();

目标选项-> w3schools-目标


33

对于它的价值,这里是封装在一个函数中的先前提供的代码。

openWindowWithPost("http://www.example.com/index.php", {
    p: "view.map",
    coords: encodeURIComponent(coords)
});

函数定义:

function openWindowWithPost(url, data) {
    var form = document.createElement("form");
    form.target = "_blank";
    form.method = "POST";
    form.action = url;
    form.style.display = "none";

    for (var key in data) {
        var input = document.createElement("input");
        input.type = "hidden";
        input.name = key;
        input.value = data[key];
        form.appendChild(input);
    }

    document.body.appendChild(form);
    form.submit();
    document.body.removeChild(form);
}

2
恕我直言,这是最好的答案。请注意,它将在发送后删除表单,清理DOM。它也被编写为现成的功能。良好的工作
豪Mussons阿巴德

document.body.removeChild(form); 对我来说,这条线确保了隐藏输入字段
Shark Lasers

7

谢谢php-b-grader!

下面的window.open通用函数下面使用POST传递值:

function windowOpenInPost(actionUrl,windowName, windowFeatures, keyParams, valueParams) 
{
    var mapForm = document.createElement("form");
    var milliseconds = new Date().getTime();
    windowName = windowName+milliseconds;
    mapForm.target = windowName;
    mapForm.method = "POST";
    mapForm.action = actionUrl;
    if (keyParams && valueParams && (keyParams.length == valueParams.length)){
        for (var i = 0; i < keyParams.length; i++){
        var mapInput = document.createElement("input");
            mapInput.type = "hidden";
            mapInput.name = keyParams[i];
            mapInput.value = valueParams[i];
            mapForm.appendChild(mapInput);

        }
        document.body.appendChild(mapForm);
    }


    map = window.open('', windowName, windowFeatures);
if (map) {
    mapForm.submit();
} else {
    alert('You must allow popups for this map to work.');
}}

这是绝对正确的!完美满足我的需求。谢谢。
布兰登

2

即使这个问题是很久以前的,也要感谢所有人为我解决类似问题的意见。我还根据其他人在此处的答案进行了一些修改,并将多个输入/值转换为单个对象(json);希望这对某人有帮助。

js:

//example: params={id:'123',name:'foo'};

mapInput.name = "data";
mapInput.value = JSON.stringify(params); 

的PHP:

$data=json_decode($_POST['data']); 

echo $data->id;
echo $data->name;

1

该代码帮助我满足了我的要求。

我进行了一些修改,并使用表格完成了此操作。这是我的代码-

需要“表单”的“目标”属性-就是这样!

形成

<form id="view_form" name="view_form" method="post" action="view_report.php"  target="Map" >
  <input type="text" value="<?php echo $sale->myvalue1; ?>" name="my_value1"/>
  <input type="text" value="<?php echo $sale->myvalue2; ?>" name="my_value2"/>
  <input type="button" id="download" name="download" value="View report" onclick="view_my_report();"   /> 
</form>

的JavaScript

function view_my_report() {     
   var mapForm = document.getElementById("view_form");
   map=window.open("","Map","status=0,title=0,height=600,width=800,scrollbars=1");

   if (map) {
      mapForm.submit();
   } else {
      alert('You must allow popups for this map to work.');
   }
}

解释了完整的代码,显示了正常的表单和表单元素。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.