in reply to Are there any issues with JSON
Note that JSON is (at best) a transport format for structured data.
You haven't told us what parts of the Javascript bits in your CMS you want to replace, but I'm not really sure how moving to data can replace code unless you want to send commands from Perl to a generic Javascript driver that then acts on these commands.
The most important caveat with JSON is that it is implicitly UTF-8, so you will need to make sure that all your data processing is already UTF-8 before moving data through JSON to decouple the problems that UTF-8 brings from the other problems that your website change brings.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Are there any issues with JSON
by taint (Chaplain) on Jun 03, 2014 at 12:54 UTC |