前提・実現したいこと
Ajaxを使ってJavascriptからphpにデータを送ったのですが、保存されたファイルを見てみると、.csv Filesize 0となっていて名前と内容がありません。
$post_data = json_decode(file_get_contents('php://input'), true)が上手く作動していないと思うのですが、何が違うのか教えていただけないでしょうか。
javascript,phpともにエラーは出ていません。
該当のソースコード
main.js
JavaScript
1function saveData(name, data){ 2 var xhr = new XMLHttpRequest(); 3 xhr.open('POST', 'write_data.php'); // 'write_data.php' is the path to the php file described above. 4 xhr.setRequestHeader('Content-Type', 'application/json'); 5 xhr.send(JSON.stringify({filename: name, filedata: data})); 6} 7 8//最後 9//jsPsych.data.get()は問題なく作動しています。 10//ファイル名はid+random_string(作成済み).csvとしたいです。 11saveData(prolificid + random_string, jsPsych.data.get().csv());
write_data.php
php
1<?php 2 $post_data = json_decode(file_get_contents('php://input'), true); 3 // the directory "data" must be writable by the server 4 $name = "/var/www/data/".$post_data['filename'].".csv"; 5 $data = $post_data['filedata']; 6 // write the file to disk 7 file_put_contents($name, $data); 8?>
補足情報(FW/ツールのバージョンなど)
PHP ver7.4