web-dev-qa-db-ja.com

Javascript window.openは、POSTを使用して値を渡す

Window.openを使用して別のページを呼び出し、結果を返すjavascript関数があります。

ここに私のコードのセクションがあります:

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メソッドを使用してページ全体にフォームを実装せずにページを開くにはどうすればよいですかサプライヤー)

60
php-b-grader

上記のバリエーションを使用しましたが、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.');
}
65
php-b-grader

ありがとうphp-b-graderコードを改善しました。window.open()を使用する必要はありません。targetformで既に指定されています。

// 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-Target

39
Facundo Victor

価値のあるものとして、以前に提供されたコードが関数内にカプセル化されています。

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);
}
18
reformed

おかげでphp-b-grader!

pOSTを使用したwindow.openパス値の汎用関数の下:

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.');
}}
6
PeterPink

この質問はかなり前のことですが、同様の問題を解決してくれたインプットに感謝します。また、ここで他の人の答えに基づいて少し変更を加え、複数の入力/貴重品を単一オブジェクト(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;
2
early

このコードは、要件を満たすのに役立ちました。

私はいくつかの修正を行い、これを完成したフォームを使用しました。これが私のコードです

「フォーム」の「ターゲット」属性が必要です-それだけです!

フォーム

<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.');
   }
}

通常のフォームとフォーム要素を示す完全なコードについて説明します。

1
Nikz