我是ExtJs的新手,我只是很难读取从struts2应用程序收到的json数组。
以下是我从struts应用程序
收到的json数组[{"children":[{"children":[],"cls":"file","id":11,"leaf":true,"text":"A Child 1"},{"children":[],"cls":"file","id":12,"leaf":true,"text":"A Child 2"}],"cls":"folder","id":10,"leaf":false,"text":"A Folder"}]
如果我将它保存在.json文件中并使用dataUrl:'json.json'调用它,它可以正常工作。但是当我使用dataUrl:'myAction.action'调用它时,数据未加载。
如果有人能够对我在这里遗漏的东西有所了解,我真的很感激。以下是我的.js,类似于extjs提供的示例
Ext.onReady(function(){
// shorthand
var Tree = Ext.tree;
var tree = new Tree.TreePanel({
useArrows: true,
autoScroll: true,
animate: true,
enableDD: true,
containerScroll: true,
border: false,
// auto create TreeLoader
dataUrl: 'myAction.action',
root: {
nodeType: 'async',
text: 'Ext JS',
draggable: false,
id: 'src'
}
});
// render the tree
tree.render('tree-div');
tree.getRootNode().expand();
});
答案 0 :(得分:1)
确保您的dataUrl
在运行时有效。使用FireBug或Safari控制台查看myAction.action
的XHR请求 - 我的猜测是您可能需要将其更改为/something/myAction.action
。