Best way to pass JSON from Browser to PHP using Ajax.Request
问题 Hi I have a JSON object that is a 2-dimentional array and I need to pass it to PHP using Ajax.Request (only way I know how). ...Right now I manually serialized my array using a js function...and get the data in this format: s[]=1&d[]=3&[]=4 etc. .... my question is: Is there a way to pass the JSON object more directly/efficientely?..instead of serializing it myself? Thanks for any suggestions, Andrew 回答1: You can also use Prototype's function toJSON() to convert an array into a JSON object.