I have found countless tutorials on how to retrieve data from json files using jQuery and ajax but none on how to POST data to a json file. If some one coul
So you will need to use server-side script language. In this case we will use PHP.
After defining your json object you turn it into string and send it to the php file via post. From there the PHP will take it and encode it as a JSON object. This json object will saved to a file named my_json_data.json with the php function file_put_contents(). If you want to append the new content instead of replacing the old one use the function like this:
file_put_content('my_json_data.json', $jsonObject, FILE_APPEND);
JavaSrcipt:
var $firstName = $(".name"),
$caption = $(".caption");
var object = {
name: $firstName.val(),
caption: $caption.val()
}
var params = JSON.stringify(object);
$.ajax({
type: 'POST',
data: params,
url: 'save_to_json.php',
success: function(data){
// do something on success
},
error: function(){
// do something on error
}
});
PHP (save_to_json.php):
if (!isset($_POST['params']) && !empty($_POST['params'])) {
$params = $_POST['params'];
$jsonObject = json_encode($params);
file_put_contents('my_json_data.json', $jsonObject);
}
I hope I didn't missed something. Good luck.