我无法从Ajax获取php文件。首先,在PHP文件中创建一个对象,然后使用json_encode()函数将其转换为JSON。问题是:当我从ajax请求该PHP文件时,没有任何内容显示为输出。 (不过,“史密斯”应该是输出)
这是我的php文件:1.php
<?php
$myObj->name = "Smith";
$myObj->age = 20;
$myObj->Address = "Yangon";
$myJSON = json_encode($myObj);
echo "$myJSON";
?>
这是一个ajax文件:ajaxfile.php
<p id="demo"></p>
<script type="text/javascript">
var xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange = function(){
if (this.readyState == 4 && this.status == 200) {
var myObj = JSON.parse(this.responseText);
document.getElementById("demo").innerHTML = myObj.name;
}
};
xmlhttp.open("GET", "1.php", true);
xmlhttp.send();
</script>
答案 0 :(得分:0)
尝试
context.drawImage(video, 0, 0, video.videoWidth, video.videoHeight,
0, 0, canvas.width, canvas.height);