I have PHP outputting a JSON multidimensional array as follows:
{"rates":[{"meter":"30","rate":"0.15060","ppd":"10.000"}]}
However, I keep getting an error when trying to decode it on the JavaSCript side of things.
Uncaught TypeError: Cannot read property 'length' of null
Here is the code below for the jQuery side of things:
success: function (result) {
console.log(result);
$.each($.parseJSON(result), function (item, value) {
if (item == "rates") {
$.each($.parseJSON(value), function (i, object) {
console.log(i + "=" + object);
});
}
The 1st console log gives me the output I mentioned at the top, but for some reason i am not able to access the array as I thought I would.
Any help is greatly appreciated :)
$.eacheven executed?Uncaught SyntaxError: Unexpected token oin the secondparseJSONcommand.. can't explain the error you are getting