如何使用 firefox OS 发出 Ajax 请求和响应?

How can I make a Ajax request & response with firefox OS?

我有一个 php 函数,它 returns 来自数据库的 Json 数据。 我想从函数中获取所有 json 并将其显示到我的 Firefox 应用程序中。我试过 Jquery Ajax。但是它不起作用。

任何其他库或 Ajax 编码?

var a=1;
$.ajax({
     url:"http://localhost/shop/home/home/demo",
     type:"POST",
     data:{b:a},
     success: function(msg){
         alert(msg);
     }
});

它不适用于 firefox 应用程序。帮帮我。

您必须使用 mozSystem 属性。这是一个使用本机 XMLHttpRequest 的示例。

var xhr = new XMLHttpRequest({
    mozSystem: true
});
xhr.open("POST", "http://localhost/shop/home/home/demo");
xhr.onload = function() {
    if (xhr.status == 200) {
        console.log(xhr.responseText);
    }
};

xhr.send("b=" + a); //serialized data

希望对您有所帮助!