Доступ к Intel XDK Ajax после загрузки на сервер запрещен [хорошо работает в xampp]

Я создаю приложение XDK,
хорошо работал в xampp и исправил проблему с заголовком, после загрузки на работающий сервер, вызов ajax не работает, и я получил эту ошибку

XMLHttpRequest cannot load http://watanydemo.eb2a.com/metawe3/action/get?_=1451186106865. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'null' is therefore not allowed access.
index.html:92 {"readyState":0,"status":0,"statusText":"error"}

Хотя я установил заголовок всеми способами, и все же источник установлен в нуль

public function get()
{ $this->load->model('Name_model');
$result = $this->Name_model->read_names();
header('Access-Control-Allow-Origin: *');
header('Content-type: application/json');

echo json_encode($result);
}

NB мой бэкэнд это Codeigniter

мой Ajax-вызов

<script type="text/javascript">

$(document).ready(function() {

$('#loading-image').show();
try {
$.ajax({
type: "GET",
url: "http://watanydemo.eb2a.com/metawe3/action/get",
crossDomain: true,
contentType: "application/x-www-form-urlencoded",
async: true,
dataType: 'json',
processData: false,
cache: false,
success: function (response) {
alert("valid response");

for (var i = 0, res = response.length; i < res; ++i) {
var picture = response[i].picurl;
var name= response[i].name;


$("#row").append('<div class="col-md-4"><h1>'+name+'</h1><img id="pic" class="thumbnail img-responsive" alt="Bootstrap template"src="'+picture+'" />'+'<div class="well"></div></div>');
}
},
complete: function(){
$('#loading-image').hide();
},
error: function (ErrorResponse) {
console.log(JSON.stringify(ErrorResponse));
}
});
}
catch (error) {
console.log(JSON.stringify(error));

}


});

</script>

4

Решение

Проблема была в версии PHP на сервере, когда я заменил сервер новой версией PHP, все работало и работало!

0

Другие решения

Других решений пока нет …

По вопросам рекламы [email protected]