0

これは私のコードです

chrome.windows.create({'url': "http://example.com/upload/upload.php?pictureID="+ theResponse + "&userID=" + localStorage["id"]+"&username="+  localStorage["mainLogin"]}, function(tab) {
  // open window
});

これにより、次のようなURLが作成されます。

http://example.com/upload/upload.php?pictureID=123&userID=1&username=jack

私はこのメソッドを呼び出しますGET-どのようにフォームGETまたはPOST

POSTデータではなくデータでウィンドウを開くにはどうすればよいGETですか?

4

1 に答える 1

1

POSTデータとターゲットURLを含むフォームを作成してフォームを送信するHTMLページを作成する必要があると思います。簡単な例を次に示します。

<html>
<head>
<script>
document.addEventListener('DOMContentLoaded', function()
{
    location.search.substr(1).split('&').forEach(function(item)
    {
        var input = document.createElement('input');
        input.type = 'hidden';
        input.name = item.substr(0, item.indexOf('='));
        input.value = item.substr(item.indexOf('=') + 1);
        document.getElementById('postform').appendChild(input);
    });
    document.getElementById('postform').submit();
});
</script>
</head>
<body>
<form action="http://example.com/upload/upload.php" method="post" id="postform">
</form>
</body>
</html>

拡張機能のルートディレクトリにあるtest.htmlだとしましょう。電話

chrome.windows.create({'url': "test.html?pictureID="+ theResponse + "&userID=" + localStorage["id"]+"&username="+  localStorage["mainLogin"]}, function(tab) {
  // open window
});

POSTメソッドでWebサイトを開きます。

于 2012-12-20T06:14:33.103 に答える