Load method not working properly.

I’m trying to load two sheets data from server with this function $$(“test”).load(“server/get.php”); but this not giving me the result. My Data format from the server is like this:
{“data”:{“sheets”:[{“name”:“Sheet1”,“content”:{“data”:[[“1”,“1”,“aaaaa1”,""]],“styles”:[],“sizes”:[],“spans”:[]}},{“name”:“Sheet2”,“content”:{“data”:[[“1”,“1”,“aaaaa2”,""]],“styles”:[],“sizes”:[],“spans”:[]}}]}}

which is the correct format to load the data in json format.

Oh i figured it out. The correct format should be: {“sheets”:[{“name”:“Sheet1”,“content”:{“data”:[[“1”,“1”,“aaaaa1”,""]],“styles”:[],“sizes”:[],“spans”:[[“1”,“1”,“5”,“1”]]}},{“name”:“Sheet2”,“content”:{“data”:[[“1”,“1”,“aaaaa2”,""]],“styles”:[],“sizes”:[],“spans”:[]}}]}