AJAX Cross-Domain problem

半腔热情 提交于 2019-12-06 03:17:53

问题


I have following problem. My webapp is running at

http://webapp.mysite.com/browser/

And I want to make a request to

http://mysite.com/request?....

If I make a standart ajax call with the second url I get an error message , domain (same-origin) policy error.

 [object Object]-error-[Exception... 
  "Component returned failure code: 0x80004005 
  (NS_ERROR_FAILURE) [nsIXMLHttpRequest.send]"
   nsresult: "0x80004005 (NS_ERROR_FAILURE)"  
   location: "JS frame :: ..../scripts/jquery/js/jquery-1.4.4.min.js ::
   anonymous :: line 16"  data: no]

Now I tried this ajax php proxy to solve my problem. But the scripts returns no content.

var app = 'http://www.mysite.com/rest.php?request=credits';
var proxy = 'proxy.php?proxy_url=' + app;

$.ajax({
    url: proxy,
    cache: false,
    async: false,
    dataType: 'html'
    success: function(html){
         alert(html);
    },
    error: function(){

    }
});

Any ideas?


回答1:


Ah, perhaps this is the problem:

http://api.jquery.com/jQuery.ajax/

"Cross-domain requests and dataType: "jsonp" requests do not support synchronous operation."

And you said, you will use cross-domain requests, so you can not set async to false. Please try it with async = true and give feedback.

Ah, and do you get an alert message with empty content?



来源:https://stackoverflow.com/questions/5133864/ajax-cross-domain-problem

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!