使用JavaScript将数据发送到服务器(Firefox Addon) [英] Sending Data to a Server using JavaScript(Firefox Addon)

查看:179
本文介绍了使用JavaScript将数据发送到服务器(Firefox Addon)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想将一些数据发送到Firefox扩展中的外部服务器。

I would like to send some data to an external server within an Firefox extension.

我试过这个代码片段,但它不工作,原始政策。

i tried this code snippet but it doesn’t work, due to Same-Origin-Policy.

$.ajax({
  type: "POST",
  url: 'https://127.0.0.1:54321',
  data: ({foo: "bar"}),
  crossDomain: true,
  dataType: 'json'
}).done(function () {
    alert("done");
}).fail(function(xhr, status, error) {
//  var err = eval("(" + xhr.responseText + ")");
  alert((xhr.responseText));
});

由于这不工作,我尝试了这个教程: https://developer.mozilla.org/zh-CN/docs/Web/HTTP/Access_control_CORS
给我这段代码:

Since this does not work i tried this Tutorial: https://developer.mozilla.org/en-US/docs/Web/HTTP/Access_control_CORS That got me this piece of code:

var invocation = new XMLHttpRequest(); var url = 'https://127.0.0.1:54321'; 
invocation.open('POST', url, true);
invocation.setRequestHeader('X-PINGOTHER', 'pingpong');
invocation.setRequestHeader('Content-Type', 'application/xml'); 
invocation.onreadystatechange = handler;
invocation.send(document.body);

此代码也不起作用,Firefox提示我应该使用CORS。

This code also doesn't work and Firefox prompts that I should use CORS.

如果我不使用HTTPS(在非HTTPS网站上),有效的方法是有效的。

The wired thing is it works if I don't use HTTPS (on non HTTPS sites)

注意:On 'https://127.0.0.1:54321'运行Java SSLServerSocket。

Note: On 'https://127.0.0.1:54321' runs a Java SSLServerSocket.

感谢您的帮助。

推荐答案

复制粘贴:

var {Cu, Cc, Ci} = require('chrome'); //addon-sdk way
//var {Cu: utils, Cc: classes, Ci: instances} = Components; //non addon-sdk
Cu.import('resource://gre/modules/Services.jsm');
function xhr(url, cb) {
    let xhr = Cc["@mozilla.org/xmlextras/xmlhttprequest;1"].createInstance(Ci.nsIXMLHttpRequest);

    let handler = ev => {
        evf(m => xhr.removeEventListener(m, handler, !1));
        switch (ev.type) {
            case 'load':
                if (xhr.status == 200) {
                    cb(xhr.response);
                    break;
                }
            default:
                Services.prompt.alert(null, 'XHR Error', 'Error Fetching Package: ' + xhr.statusText + ' [' + ev.type + ':' + xhr.status + ']');
                break;
        }
    };

    let evf = f => ['load', 'error', 'abort'].forEach(f);
    evf(m => xhr.addEventListener(m, handler, false));

    xhr.mozBackgroundRequest = true;
    xhr.open('GET', url, true);
    xhr.channel.loadFlags |= Ci.nsIRequest.LOAD_ANONYMOUS | Ci.nsIRequest.LOAD_BYPASS_CACHE | Ci.nsIRequest.INHIBIT_PERSISTENT_CACHING;
    //xhr.responseType = "arraybuffer"; //dont set it, so it returns string, you dont want arraybuffer. you only want this if your url is to a zip file or some file you want to download and make a nsIArrayBufferInputStream out of it or something
    xhr.send(null);
}

xhr('https://www.gravatar.com/avatar/eb9895ade1bd6627e054429d1e18b576?s=24&d=identicon&r=PG&f=1', data => {
    Services.prompt.alert(null, 'XHR Success', data);
    var file = OS.Path.join(OS.Constants.Path.desktopDir, "test.png");
    var promised = OS.File.writeAtomic(file, data);
    promised.then(
        function() {
            alert('succesfully saved image to desktop')
        },
        function(ex) {
             alert('FAILED in saving image to desktop')
        }
    );
});

这篇关于使用JavaScript将数据发送到服务器(Firefox Addon)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆