我正在尝试在JSON
中向外部域提出POST
请求,但我无法访问服务器的文件来修改它们。
当我执行此请求时,我会收到以下错误
xmlhttprequest无法加载https://external.com。不 请求的"访问控制"标头 资源。因此,原点'https://www.ownedwebsite.com'因此不是 允许访问。
问题在哪里?
这是我正在使用的代码:
$(document).ready(function(){
$("#submit").on('click', function(){
event.preventDefault();
$.ajax({
url: 'https://external.com',
type : "POST",
crossDomain: true,
dataType : 'json',
beforeSend: function (request)
{
//request.setRequestHeader("name", "value");
},
data : $("#formCart").serialize(),
success : function(result) {
alert('POST done.');
},
error: function(xhr, resp, text) {
alert('POST failed.');
}
})
});
});
我该怎么办?我要做的就是以JSON格式发送此帖子表格数据。
如果要从twitter
获取json
数据,则必须注册api
密钥,这意味着它们可以使用json
,因此适用其他网站。
如果您只想抓住页面,则可以使用heroku api
$(document).ready(function(){
var text = 'https://login.yahoo.com/';
$.ajaxPrefilter( function (options) {
if (options.crossDomain && jQuery.support.cors) {
var http = (window.location.protocol === 'http:' ? 'http:' : 'https:');
options.url = http + '//cors-anywhere.herokuapp.com/' + options.url;
//options.url = "http://cors.corsproxy.io/url=" + options.url;
}
});
$.get(
'https://en.wikipedia.org/wiki/Thomas_Alva_Edison_Memorial_Tower_and_Museum',
function (response) {
var res = response;
$('#yahoo').append(res);
});
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
<div id="yahoo"></div>