我有2个文件。
1:json.php;
<?php
$data = array(
(object)array(
'oV' => 'myfirstvalue',
'oT' => 'myfirsttext',
),
(object)array(
'oV' => 'mysecondvalue',
'oT' => 'mysecondtext',
),
);
$json = json_encode($data);
echo $json;
?>
的test.html:
$(function () {
$.ajax({
url: "json.php",
dataType: "json",
success: function(data){
console.log(data);
}
});
});
但是我没有在控制台中看到我的数据对象。我错过了什么?谢谢!
答案 0 :(得分:0)
你必须添加:
header("Content-type: text/plain");
echo json_encode($data);
这告诉浏览器它的检索内容。