我有部分AJAX代码,但它返回statustext "NS_ERROR_DOM_BAD_URI: Access to restricted URI denied"
$.ajax
中我添加了一些部分,但没有改变
从这个网址我只是一个数字,没有html
或xml tags
$.ajax({
url: route, //here is my link, when open in browser all is ok
type: 'GET',
dataType: '_default', //was text
username: username,
password: password ,
crossDomain:true, //added
xhrFields: { withCredentials: true }, //added
success: function(data1) {
console.log(data1);
alert(data1);
},
error: function(err){console.log(err);
alert(err);}
,beforeSend: function (xhr) {
xhr.setRequestHeader("Access-Control-Allow-Origin", "*"); //added
},
headers: {
'Access-Control-Allow-Origin': '*'} //added
})
我在Firefox中测试了它
答案 0 :(得分:0)
您正在设置客户端上的标题。标题" Access-Control-Allow-Origin"," *"必须在服务器上设置并在响应中发送。另外,你想跨域吗?
答案 1 :(得分:0)
我无法从服务器更改答案,因此我使用file_get_contents命令创建PHP文件并执行此操作。 在php文件中:
<?php
header("Content-Type: text/html; charset=utf-8");
$url = *my url*;
$cred = sprintf( 'Authorization: Basic %s',
base64_encode( 'login:pass' )
);
$opts = array(
'http' => array(
'method' => 'GET',
'header' => $cred
)
);
$ctx = stream_context_create( $opts );
$r=file_get_contents( $url, false, $ctx );
echo $r;
?>