如何在“请求”中使用帖子firefox-addon-sdk 的功能

发布于 2024-12-11 18:06:45 字数 310 浏览 0 评论 0原文

我读到了有关“请求”功能的链接: https://addons .mozilla.org/en-US/developers/docs/sdk/1.1/packages/addon-kit/docs/request.html

我想使用“post”方法。没有关于如何使用 post 方法将变量从 JS 发送到我的服务器的解释或示例。我该怎么做呢?

I read about function 'Request' as this link:
https://addons.mozilla.org/en-US/developers/docs/sdk/1.1/packages/addon-kit/docs/request.html

And I would like to use the "post" method. There is no explaination or example on how to send a variable from JS to my server with the post method. How can I do it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

森林散布 2024-12-18 18:06:45

您只需将该页面示例中的 get() 调用更改为 post() 即可。

exports.main = function() {
    var Request = require("request").Request;
    Request({
      url: "http://google.com/",
      content: {q: "test"},
      onComplete: function (response) {
        console.log(response.text);
      }
    }).post();
};

You just change the get() call in the example on that page with post().

exports.main = function() {
    var Request = require("request").Request;
    Request({
      url: "http://google.com/",
      content: {q: "test"},
      onComplete: function (response) {
        console.log(response.text);
      }
    }).post();
};
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文