admin管理员组

文章数量:1287505

I'm building a small Chrome extension that must send messages through a POST http request to a server in my pany network, and I'm using jQuery 1.4.1 to speed up the development of the javascript part.

I have this code to send the request:

function send() {
    $.ajax({
        url: "",
        method: "POST",
        data: {status: "sometest", in_reply_to_status_id: "anId"},
        success: function(data, textStatus) {
            console.log("success");
            console.log(data);
            console.log(textStatus);
        },
        error: function(XMLHttpRequest, textStatus, errorThrown) {
            console.log("error");
            console.log(XMLHttpRequest);
            console.log(textStatus);
            console.log(errorThrown);
        },
        plete: function(XMLHttpRequest, textStatus) {
            console.log("plete");            
        }
    });     
}

The request done this way fails, in the Chrome log I see that the server responds with a http status 400 and with the text "This methods requires POST".

If I change to code above with this:

function send() {
    $.post(".xml", {status: "sometext", in_reply_to_status_id: "anId"}, function(data) {
        console.log(data)
    }); 
}

everything works fine, the http status is 200 and server side I can see that the data I sent is correctly saved.

I need to use the full $.ajax() method because I need to do some work in case of success or failure, and some other when the request is plete, so $.post() is not enough.
Am I doing something wrong calling $.ajax(), or there is an issue of some kind, maybe because I am in the xontext of a Chrome extension?

Thanks

I'm building a small Chrome extension that must send messages through a POST http request to a server in my pany network, and I'm using jQuery 1.4.1 to speed up the development of the javascript part.

I have this code to send the request:

function send() {
    $.ajax({
        url: "http://mypany./update",
        method: "POST",
        data: {status: "sometest", in_reply_to_status_id: "anId"},
        success: function(data, textStatus) {
            console.log("success");
            console.log(data);
            console.log(textStatus);
        },
        error: function(XMLHttpRequest, textStatus, errorThrown) {
            console.log("error");
            console.log(XMLHttpRequest);
            console.log(textStatus);
            console.log(errorThrown);
        },
        plete: function(XMLHttpRequest, textStatus) {
            console.log("plete");            
        }
    });     
}

The request done this way fails, in the Chrome log I see that the server responds with a http status 400 and with the text "This methods requires POST".

If I change to code above with this:

function send() {
    $.post("http://sunshine.emerasoft./statusnet/api/statuses/update.xml", {status: "sometext", in_reply_to_status_id: "anId"}, function(data) {
        console.log(data)
    }); 
}

everything works fine, the http status is 200 and server side I can see that the data I sent is correctly saved.

I need to use the full $.ajax() method because I need to do some work in case of success or failure, and some other when the request is plete, so $.post() is not enough.
Am I doing something wrong calling $.ajax(), or there is an issue of some kind, maybe because I am in the xontext of a Chrome extension?

Thanks

Share Improve this question asked Feb 2, 2010 at 22:57 Davide GualanoDavide Gualano 13k9 gold badges46 silver badges65 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 13

I believe the $.ajax() function takes a 'type' option, not a 'method' option.

The default type is GET.

本文标签: javascriptjQueryajax() sends POST requests as GET in a Chrome extensionStack Overflow