in reply to Re^2: Are there any issues with JSON
in thread Are there any issues with JSON
"Right. It's a "push", "pull" (transport) layer. That will provide me the same "dynamic feel" that JavaScript does."
No, that's not what JSON is at all.
JSON is a data format. That's it. Saying that JSON will provide you with a "dynamic feel" is like saying that Perl hash variables will provide you with a "dynamic feel".
Hashes are just a place to put data. If you want to do something interesting with that data (like provide a "dynamic feel"), then you need to write code to manipulate the data in the hash in some way.
Similarly JSON is just a data format. If you want to do something interesting with that data (like provide a "dynamic feel"), then you need to write code to manipulate the data in the JSON in some way. If you want that to happen in a browser, then that code probably wants to be Javascript.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Are there any issues with JSON
by taint (Chaplain) on Jun 03, 2014 at 19:06 UTC |