Я использую PHP скрипт (currentimage.php), чтобы получить снимок с моего IP CCTV камеры, которая работает отлично:Как обновить изображение с камеры в фоновом режиме без обновления всей страницы?
<?php
while (@ob_end_clean());
header('Content-type: image/jpeg');
// create curl resource
$ch = curl_init();
curl_setopt($ch, CURLOPT_USERAGENT, $useragent);
curl_setopt($ch, CURLOPT_URL, 'http://192.168.0.20/Streaming/channels/1/picture');
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
curl_setopt($ch, CURLOPT_USERPWD, 'username:password');
// $output contains the output string
$output = curl_exec($ch);
echo $output;
// close curl resource to free up system resources
curl_close($ch);
?>
и другой PHP/HTML для отображения данных:
<IMG id="myImage" SRC='currentimage.php'>
но я не могу заставить его работать, чтобы обновлять изображение в фоновом режиме каждые 30 секунд. Я пытаюсь AJAX, но никакого успеха:
<script>
function refresh_image(){
document.getElementbyId("myImage").setAttribute("src", "currentimage.php");
}
setInterval(function(){refresh_image()}, 30000);
</script>
Что я делаю неправильно? Буду признателен за любую помощь
Просто попробуйте удалить атрибут SRC в функции обновления перед установкой его – vikas
Это не AJAX, вы должны использовать 'XMLHttpRequest();' класс. – Phiter