我想从php页面获取json文件,但我的代码不起作用,出了什么问题?
我的php页面是
header('Content-type: application/json');
$jsonstart="{'files' : [";
$jsonend="]}";
$content="{'firstname' : '".$_GET['name']."' , 'lastname' : 'izadi'}";
$jsonfile=$jsonstart.$content.$jsonend;
print $jsonfile;
我的ajax代码是
$(document).ready(function(){
$.getJSON("getfilesinfo.php?name=afshin", function(data){
alert();
var test=JSON.parse(data);
alert("Data: " + test.files[1].firstname + "\nStatus: " + status);
});
});
答案 0 :(得分:1)
你必须在你的php文件中使用json_encode()。
<?php
header('Content-type: application/json');
$array = array(
'firstname' => $_GET['name'],
'lastname' => 'izadi'
);
echo json_encode($array);
exit;
答案 1 :(得分:0)
使用json_encode
尝试这个更干净的代码<?php
header('Content-type: application/json');
$array = array(
'firstname' => $_GET['name'],
'lastname' => 'izadi'
);
echo json_encode(array('files'=>array($array)));
JS:
$(document).ready(function(){
$.getJSON("getfilesinfo.php?name=afshin", function(test){
alert("Data: " + test.files[1].firstname );
});
});