抱歉,如果这是一个愚蠢的问题。我正在对 php 脚本进行 ajax 调用以获取一些数据,这是我的代码
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script>
function loadDoc()
{
var xmlhttp;
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if(xmlhttp.readyState==4 && xmlhttp.status==200)
{
var finallydata=JSON.parse(xmlhttp.responseText);
document.getElementById("myDiv").innerHTML=typeof finallydata;
}
}
var url='http://localhost/path/to/my/script';
xmlhttp.open("GET",url,true);
xmlhttp.send();
}
</script>
</head>
<body>
<div id="myDiv"><h2>Let AJAX change this text</h2></div>
<button type="button" onclick="loadDoc()">Change Content</button>
</body>
</html>
这是我在 YII 中的 php 脚本
if($timevalue != 0)
{
$model=new Products;
$receivedata=$model->retrieveresult($timevalue);
foreach($receivedata as $finaldata)
{
header('Content-Type: application/json');
echo json_encode(array('table'=>'products',array('productId'=>$finaldata->productId,'productName'=>$finaldata->productName,'Creation_date'=>$finaldata->Creation_date)));
}
}
现在,由于我必须发送多条数据记录,但要一条一条地发送,所以我可以使用 foreach 循环。我是新手,不知道能不能用。有人可以帮忙吗?