Jump to content
  • 0

Не работает Ajax


Heidel
 Share

Question

В консоли ошибок js никаких нет, но браузер выдает Ошибка Ajax: данные не получены

<!-- xmlget.html -->
<html>
<head>
<title> Пример извлечения XML с помощью Ajax </title>
</head>

<body><center />
<h1>Загрузка XML-содержимого в контейнер DIV</h1>
<div id="info"> Это предложение будет заменено </div>

<script type="text/javascript">

function ajaxRequest()
{
var r;
try // Для всех браузеров, кроме ие
{
r = new XMLHttpRequest();
}
catch(e)
{
try // ие6+
{
r = new ActiveXObject("Msxml2.XMLHTTP");
}
catch(e)
{
try // ie5
{
r = new ActiveXObject("Microsoft.XMLHTTP");
}
catch(e) // Браузер не поддерживает Ajax
{
r = false;
}
}
}
return r;
}

var nocache = "&nocache=" + Math.random()*1000000;
url = "rss.news.yahoo.com/rss/topstories";
var request = ajaxRequest();
if(request)
{
request.open("GET", "xmlget.php?url=" + url + nocache, true)
out = "";

request.onreadystatechange = function()
{
if(this.readyState == 4)
{
if(this.status == 200)
{
if(this.responseXML != null)
{
titles = this.responseXML.getElementByTagName('title')
for (j = 0; j < titles.length; ++j)
{
out += titles[j].childNodes[0].nodeValue + '<br />'
}
document.getElementById('info').innerHTML = out;

}
else alert("Ошибка Ajax: Данные не получены")
}
else alert("Ошибка Ajax: " + this.statusText)
}
}
request.send(null)
}
else
{
alert("Ошибка: Ваш браузер не поддерживает AJAX")
}
</script></body></html>

код пхп

<?php //xmlget.php
function SanitazeString($var)
{
$var = strip_tags($var);
$var = htmlentities($var);
return stripslashes($var);
}

if(isset($_GET['url']))
{
header('Content-type: text/xml');
echo file_get_contents("http://".SanitazeString($_GET['url']));
}
?>

что тут неправильно?

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

Ну вот просто с GET-запросом такой код на моём локальном сервере будет работать

<!-- urlget.html -->
<html>
<head>
<title> Пример использования Ajax с GET-запросом </title>
</head>

<body><center />
<h1>Загрузка веб-страницы в контейнер DIV</h1>
<div id="info"> Это предложение будет заменено </div>

<script type="text/javascript">

function ajaxRequest()
{
var r;
try // Для всех браузеров, кроме ие
{
r = new XMLHttpRequest();
}
catch(e)
{
try // ие6+
{
r = new ActiveXObject("Msxml2.XMLHTTP");
}
catch(e)
{
try // ie5
{
r = new ActiveXObject("Microsoft.XMLHTTP");
}
catch(e) // Браузер не поддерживает Ajax
{
r = false;
}
}
}
return r;
}

var nocache = "&nocache=" + Math.random()*1000000;
var request = ajaxRequest();
if(request)
{
request.open("GET", "urlget.php?url=oreilly.com" + nocache, true)

request.onreadystatechange = function()
{
if(this.readyState == 4)
{
if(this.status == 200)
{
if(this.responseText != null)
{
document.getElementById('info').innerHTML =
this.responseText
}
else alert("Ошибка Ajax: Данные не получены")
}
else alert("Ошибка Ajax: " + this.statusText)
}
}
request.send(null)
}
else
{
alert("Ошибка: Ваш браузер не поддерживает AJAX")
}
</script></body></html>

пхп-код

<?php //urlget.php
function SanitazeString($var)
{
$var = strip_tags($var);
$var = htmlentities($var);
return stripslashes($var);
}

if(isset($_GET['url']))
{
echo file_get_contents("http://".SanitazeString($_GET['url']));
}
?>

А вот почему не шуршит код из топика, я что-то не могу понять.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy