我正在尝试将来自 jquery ajax 调用的 JSON 数组传递给 php 文件,并且在 php 文件中,我正在将接收到的数据写入文件。我的代码:
var contacts = [{"address":[],"phone":[],"last_name":"abc","email":[{"address":"test@yahoo.com","type":null,"selected":true}],"first_name":"Test"}];
$.ajax({
url: 'handler.php',
type: "POST",
dataType: 'json',
data: { 'json': JSON.stringify(contacts) } ,
success: function(response){
alert(response);
}
});
和php代码:
$json = $_POST['json'];
$response = json_decode($json);
$file = fopen('test.txt','w+');
fwrite($file, $response);
fclose($file);
echo "Done";
它没有将 json 数据写入文件,即文件为空