I'm trying to send my javascript object to PHP via JSON.stringify()
Javascript:
$('#save').on('click touch', function(){
obj = {
"1" : {
"1" : "hey",
"2" : "hay"
},
"2" : {
"1" : "hey",
"2" : "hay"
}
}
var json = JSON.stringify( obj );
console.log(json)
$.ajax({
type: 'POST',
url: 'ajax.php',
success: function(data) {
alert(data);
$("p").text(data);
}
});
});
ajax.php:
<?php
$obj = json_decode($json);
echo $obj;
?>
But this code returns an error saying that $json is not defined.
I have no idea why this is not working.
5 Answers 5
There are 2 problems.
- You are not sending any data with the request
- That's not the way you'll get the value from a request in PHP
First, add this*:
$.ajax({
type: 'POST',
url: 'ajax.php',
data : { json: json }, // <---------------------
...
* this works just because jQuery implementation will automatically convert any non-string data argument into a form-urlencoded query string. See the docs.
Then, in your PHP, you should do:
$jsonStr = $_POST['json'];
$json = json_decode($jsonStr);
Edit:
Another possible way:
$.ajax({
type: 'POST',
url: 'ajax.php',
data : json , // <---------------------
...
This way, your data will not be a valid form-urlencoded input, so PHP will not parse it into $_POST, but you still can get the contents of your input doing this:
$jsonStr = file_get_contents("php://input");
$json = json_decode($jsonStr);
8 Comments
form-urlencoded input? Is it due to the contents of the json variable? The keys being numeric?form-urlencoded values are in the form param1=value1¶m2=value2¶m3=value3...{json: ___ } solves this?jQuery will automatically convert any object into a form-urlencoded string. Might not work in other Ajax libs.Well - you never pass your data in the AJAX request!
$.ajax({
type: 'POST',
url: 'ajax.php',
data: json //<---- RIGHT HERE
success: function(data) {
alert(data);
$("p").text(data);
}
});
6 Comments
$json = $_POST['json'] unless OP has register_globals=Onjsonkey=value pairs in POST, value by itself is utterly meaningless. register_globals never did, and never will,decode json...$obj = json_decode($json). If register_globals=On and the data is passed under the 'json' key, like json={"foo":"bar"}, it would work.You have to send the obj with the ajax request
$.ajax({
type: 'POST',
url: 'ajax.php',
data : json,
dataType : 'json' // for json response
...
2 Comments
dataType refers to the expected response, no the request.Check here for reference jQuery ajax
Data parameter: Specifies data to be sent to the server.
Try this:
$('#save').on('click touch', function(){
obj = {
"1" : {
"1" : "hey",
"2" : "hay"
},
"2" : {
"1" : "hey",
"2" : "hay"
}
}
var json = JSON.stringify( obj );
$.ajax({
data : json,
type: 'POST',
url: 'ajax.php',
success: function(data) {
alert(data);
$("p").text(data);
}
});
});
1 Comment
dataType refers to the expected response, no the request.Replace your ajax code with this.
$.ajax({
type: 'POST',
url: 'ajax.php',
data: json
success: function(data) {
alert(data);
$("p").text(data);
}
});
For ajax php
<?php
$obj = json_decode($_POST['data']);
echo $obj;
?>
dataattribute on$.ajaxoptions.$_POSTvariable in PHPjsonvar in the ajax call...$_POST