gpt4 book ai didi

javascript - XMLHttpRequest POST 并在新窗口/标签中打开目标页面

转载 作者:行者123 更新时间:2023-11-29 14:51:36 27 4
gpt4 key购买 nike

如何在 XMLHttpRequest 中使用 target="_blank" 模拟 Form 的 'POST' 操作? (即在新标签中发布数据和打开目标页面)

最佳答案

gBrowser 提供开箱即用的此功能。

var dataStream = Cc["@mozilla.org/io/string-input-stream;1"].createInstance(Ci.nsIStringInputStream);
dataStream.data = "foo=bar&alpha=beta"; // make sure the values are properly encoded with encodeURIComponent

var postStream = Cc["@mozilla.org/network/mime-input-stream;1"].createInstance(Ci.nsIMIMEInputStream);
postStream.addHeader("Content-Type", "application/x-www-form-urlencoded");
postStream.addContentLength = true;
postStream.setData(dataStream);

gBrowser.loadOneTab("http://www.example.com/", {inBackground: false, postData: postStream});

关于javascript - XMLHttpRequest POST 并在新窗口/标签中打开目标页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24776180/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com