我正在使用PHP上传文件,并希望将文件名和文件状态返回给javascript.在PHP中,我通过以下方式创建json对象:
$value = array('result' => $result, 'fileName' => $_FILES['myfile']['name']);
print_r ($value);
$uploadData = json_encode($value);
这将创建json对象.然后我将它发送到javascript函数并将其作为一个名为fileStatus的变量接收.
alert (fileStatus);
它显示
{"result":"success","fileName":"cake"}
这应该是好的.但是当我尝试做的时候
fileStatus.result or fileStatus.fileName
解决方法:
fileStatus此时只是一个字符串,因此它没有result和fileName等属性.您需要使用诸如Firefox的本机JSON.parse或jQuery的jQuery.parseJSON之类的方法将字符串解析为JSON对象.
例:
var fileStatusObj = jQuery.parseJSON(fileStatus);