I'm trying to load a Dynatree with the results of an ajax request:

var treeData = [];

$(function(){
    $.get('/getTree.do', function(data){
        treeData = data;
        $("#treeContainer").dynatree({ children : treeData});
    }), 'application/json';
}

Dynatree throws this error (as seen from the chrome javascript console):

Uncaught Invalid data type for 
[
    { title : "Group1", key : "182"  },

    { title : "Group2", key : "181"  },

    { title : "Group3", key : "189" , isFolder:true, children: 
        [ { title : "Group3_1", key : "301" , isFolder:true, children: 
            [ { title : "Group3_1_1", key : "321" , isFolder:true, children: 
                [ { title : "Group3_1_1_1", key : "322"  } ]
              }
           ] 
          }
        ] 
    }
]
DynaTreeNode.addChildjquery.dynatree.js:1697
DynaTree._loadjquery.dynatree.js:2181
$.widget._createjquery.dynatree.js:2870

What I don't get is that if I comment out the ajax query, and change the first line to the output of getTree.do:

var treeData = [ { title : "Group1", key : "182"  }, ...];

then the tree is drawn just fine. getTree.do sets its response content type to 'application/json' so I think that's covered.

How are the two methods of populating the treeData variable different? How can I set the variable so that it works properly?

Edit: the offending line (1697) is as follows:

1696:    if(typeof(obj) == "string"){
1697:       throw "Invalid data type for " + obj;
1698:    }

This seems to imply that the response is received and stored as a string, despite its MIME type being 'application/json', and despite the argument given to $.get() regarding the response type. Do I have to do some other call so that it is parsed as a javascript object?

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

Use $.getJSON instead.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.