阅读量:8
- 使用JSONP:在$.ajax请求中设置dataType为’jsonp’,并在服务器端返回callback函数的调用。
$.ajax({ url: 'http://example.com/api', dataType: 'jsonp', success: function(data){ console.log(data); } });
- 使用CORS(跨域资源共享):在服务器端设置响应头Access-Control-Allow-Origin为请求源的域名。
$.ajax({ url: 'http://example.com/api', dataType: 'json', xhrFields: { withCredentials: true }, success: function(data){ console.log(data); } });
- 使用代理服务器:通过代理服务器转发请求,在代理服务器上处理跨域问题。
$.ajax({ url: 'http://proxy.com/api', dataType: 'json', success: function(data){ console.log(data); } });