2

我正在尝试使用 AJAX 和 PHP 将 json 数据保存到文件中,但生成的文件为空。为什么它不起作用?

这是HTML:

<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
<script>

var dataset = {"value1": 2, "value2": 1000};

$.ajax({
   url: 'save.php',
   type: 'POST',
   data: dataset,
   success: function() {
      alert('Success');
   }
});

</script>
</body>
</html>

保存.php:

<?php 
$map=json_decode($_POST['json_string']);
$file = "test.json"; 
$fh = fopen($file, 'w') or die("can't open file");
fwrite($fh, $map);
fclose($fh);
?>
4

2 回答 2

2

您使用了错误的 POST 变量名。首先,发送您的 AJAX 请求:

data: { 
    json: dataset
    },

然后使用:

$map = $_POST['json'];

不要解码它,因为您要保存 JSON 字符串,而不是数组。如果你想要 PHP 表示,最好使用var_export()

$map = var_export(json_decode($_POST['json'], true), true);
于 2012-09-21T23:54:17.947 回答
0

将此行更改$map=json_decode($_POST['json_string']);$map=json_decode($_POST['dataset']);

于 2012-09-21T23:59:20.583 回答