简体   繁体   中英

jQuery AJAX call to .NET code-behind won't return

adAsText(file);

    $.ajax({
        url: "WebForm1.aspx/OnSubmit",
        rn "abcd";
}

it is a success and all the contents of the file prints as an alert, but I can't get it to return. It there something wrong with the content/data type?

Your Code is not clear. I think you should clear it as much as possible. The Error I see is that you are not calling the server side function anywhere. Then how you hope to be having returned data. First Call the function by passing a string value to it.

I think this is your problem, if not, please clarify more.

Try changing dataType to json. Even though it should infer, it's better to be explicit.

$.ajax({
    url: "WebForm1.aspx/OnSubmit",
    type: "POST",
    data: file,
    dataType: "json",
    contentType: "plain/text; charset=utf-8",
    processData: false,
    error: function (msg) {
        console.log(msg.d);
        alert("error");
    },
    success: function (msg) {
        console.log(msg.d);
        alert(file);
    }
});

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM