| Author |
problem in json/ajax
|
Daniel Cipriano
Greenhorn
Joined: Feb 02, 2011
Posts: 14
|
|
i have this code
Code:
and a php
PHP Code:
the result is something like [{"valor1":"20"},{"valor2":"50"}]
i don't know why the ajax only works without [] like:
{"valor1":"20"},{"valor2":"50"}
what is the problem? and how i can solve that? if i change $arr[] to $arr only show the last value of the table
thanks
|
 |
Eric Pascarello
author
Rancher
Joined: Nov 08, 2001
Posts: 15362
|
|
This is not a JSON object, that is an array.
If you want to pass it back as a JSON object, than:
Than with the response you just do
json.values to get the array.
Eric
|
 |
Daniel Cipriano
Greenhorn
Joined: Feb 02, 2011
Posts: 14
|
|
this solve my problem
thanks
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56554
|
|
|
Yeah, you've got to treat the data the way that it is formatted. If an array is returned, you need to treat it like an array.
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
 |
|
|
subject: problem in json/ajax
|
|
|