在没有重定向的情况下将请求发送到javascript(phonegap)中的页面?

时间:2016-03-14 16:33:15

标签: javascript jquery facebook cordova

基本上我正在搜索没有重定向的href。我有以下功能

if(custom_options !== undefined){
        op = custom_options;
        op.url = url;
        op.data = data;
        op.type = type;
    }else{
        op = {
            type: type,
            data: data,
            url: url,
            cache: false,
            async: true
        }; 
    }

    $.ajax(op);

这会向指定的网址发送一个ajax请求,但是undefined/proxy/...总是会失败,因为看到here到各个网址,所以我相信问题在于该功能。如何在没有重定向的情况下执行url并处理反馈?

0 个答案:

没有答案