投放本站广告请联系:
extjscn#126.com
extjs tree 中动态加裁数据问题
extjs.html:
<html xmlns="http://www.w3.org/1999/xhtml" > <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>ExtJS</title> <link rel="stylesheet" type="text/css" href="../extjs/resources/css/ext-all.css" /> <script type="text/javascript" src="../extjs/adapter/ext/ext-base.js"></script> <script type="text/javascript" src="../extjs/ext-all-debug.js"></script> <script> Ext.onReady(function(){ // shorthand var Tree = Ext.tree; var tree = new Tree.TreePanel({ el:'tree-div', autoScroll:true, animate:true, enableDD:true, containerScroll: true, loader: new Tree.TreeLoader({ dataUrl:'tree.json' }) }); // set the root node var root = new Tree.AsyncTreeNode({ text: 'Ext JS', draggable:false, id:'source' }); tree.setRootNode(root); // render the tree tree.render(); root.expand(); }); </script> </head> <body> <div id="tree-div" style="overflow:auto; height:300px;width:250px;border:1px solid #c3daf9;"></div> </body> </html>
---------------------------------------------------------------
tree.json:
[{"cls":"folder","id":10,"leaf":false,"children":[{"cls":"file","id":11,"leaf":true,"children":null,"text":"S600"},{"cls":"file","id":12,"leaf":true,"children":null,"text":"SLK200"}],"text":"Benz"}]
---------------------------------------------------------------
在动态加裁这个tree.json数据时,不起作用啊。按理是可以生成一棵树的。不知是为什么呢?
- 要发表评论,请先登录
你的例子是正确的,
你的例子是正确的,
可能你的服务器不支持解析 .json 文件。
在我本机把 tree.json 换成 tree.php即可。
我在.net环境环境下试过这代码也不行 那要怎么处理?
我在.net环境环境下试过这代码也不行 那要怎么处理?
iis 添加 json的MIME类型
iis -> 网站属性 -> HTTP头 -> MIME类型 -> 新建
扩展名: .json
MIME类型: json
这个啥问题呢
http://bbs.extjs.org.cn/viewthread.php?tid=438