ExtJs 3.1 XmlTreeLoader Example Error


Posted in Javascript onFebruary 09, 2010

前言

关键字:ExtJs 3.1 XmlTreeLoader Example Error,XmlTreeLoader 错误,TreePanel Error

ExtJs 3.1的XmlTreeLoader例子折腾了我近一个下午加晚上,官方的例子没有问题,可以加载xml的数据,本地IIS死活不行,也不报错,直接查看官方的代码也是一模一样的,今早意外给让我搜到了,不是在官方,而是在貌似一个韩国的博客里面找到的,致敬一下,本文且做其简单中文"译"本。

原文

http://javarush.com/entry/ExtJS-XmlTreeLoader-Error 

正文

1.

代码位置:Ext3.1\examples\tree\xml-tree-loader.js

2.

注意标红新增代码",requestMethod: 'GET'"!!

/*! 
* Ext JS Library 3.1.0 
* Copyright(c) 2006-2009 Ext JS, LLC 
* licensing@extjs.com 
* http://www.extjs.com/license 
*/ // 
// Extend the XmlTreeLoader to set some custom TreeNode attributes specific to our application: 
// 
Ext.app.BookLoader = Ext.extend(Ext.ux.tree.XmlTreeLoader, { 
processAttributes : function(attr){ 
if(attr.first){ // is it an author node? 
// Set the node text that will show in the tree since our raw data does not include a text attribute: 
attr.text = attr.first + ' ' + attr.last; 
// Author icon, using the gender flag to choose a specific icon: 
attr.iconCls = 'author-' + attr.gender; 
// Override these values for our folder nodes because we are loading all data at once. If we were 
// loading each node asynchronously (the default) we would not want to do this: 
attr.loaded = true; 
attr.expanded = true; 
} 
else if(attr.title){ // is it a book node? 
// Set the node text that will show in the tree since our raw data does not include a text attribute: 
attr.text = attr.title + ' (' + attr.published + ')'; 
// Book icon: 
attr.iconCls = 'book'; 
// Tell the tree this is a leaf node. This could also be passed as an attribute in the original XML, 
// but this example demonstrates that you can control this even when you cannot dictate the format of 
// the incoming source XML: 
attr.leaf = true; 
} 
} 
}); 
Ext.onReady(function(){ 
var detailsText = '<i>Select a book to see more information...</i>'; 
var tpl = new Ext.Template( 
'<h2 class="title">{title}</h2>', 
'<p><b>Published</b>: {published}</p>', 
'<p><b>Synopsis</b>: {innerText}</p>', 
'<p><a href="{url}" target="_blank">Purchase from Amazon</a></p>' 
); 
tpl.compile(); 
new Ext.Panel({ 
title: 'Reading List', 
renderTo: 'tree', 
layout: 'border', 
width: 500, 
height: 500, 
items: [{ 
xtype: 'treepanel', 
id: 'tree-panel', 
region: 'center', 
margins: '2 2 0 2', 
autoScroll: true, 
rootVisible: false, 
root: new Ext.tree.AsyncTreeNode(), 
// Our custom TreeLoader: 
loader: new Ext.app.BookLoader({ 
dataUrl:'xml-tree-data.xml' 
,requestMethod: 'GET' 
}), 
listeners: { 
'render': function(tp){ 
tp.getSelectionModel().on('selectionchange', function(tree, node){ 
var el = Ext.getCmp('details-panel').body; 
if(node && node.leaf){ 
tpl.overwrite(el, node.attributes); 
}else{ 
el.update(detailsText); 
} 
}) 
} 
} 
},{ 
region: 'south', 
title: 'Book Details', 
id: 'details-panel', 
autoScroll: true, 
collapsible: true, 
split: true, 
margins: '0 2 2 2', 
cmargins: '2 2 2 2', 
height: 220, 
html: detailsText 
}] 
}); 
});

结束语

不要放弃和接受一次失败的搜索,不断的尝试改变搜索关键字,哪怕是用词霸翻成英文也得努力去试试,看不懂不要紧,看懂代码就行,代码无国界: )

Javascript 相关文章推荐
在 IE 中调用 javascript 打开 Excel 表
Dec 21 Javascript
由JavaScript中call()方法引发的对面向对象继承机制call的思考
Sep 12 Javascript
利用js的Node遍历找到repeater的一个字段实例介绍
Apr 25 Javascript
js QQ客服悬浮效果实现代码
Dec 12 Javascript
JQuery自动触发事件的方法
Jun 13 Javascript
javascript数据结构之二叉搜索树实现方法
Nov 25 Javascript
深入浅析javascript中的作用域(推荐)
Jul 19 Javascript
Ubuntu系统下Angularjs开发环境安装
Sep 01 Javascript
一个炫酷的Bootstrap导航菜单
Dec 28 Javascript
vue axios用法教程详解
Jul 23 Javascript
jQuery实现购物车的总价计算和总价传值功能
Nov 28 jQuery
vue 实现走马灯效果
Oct 28 Javascript
Javascript 获取链接(url)参数的方法[正则与截取字符串]
Feb 09 #Javascript
一个XML格式数据转换为图表的例子
Feb 09 #Javascript
javascript 解析url的search方法
Feb 09 #Javascript
toString()一个会自动调用的方法
Feb 08 #Javascript
jQuery AJAX回调函数this指向问题
Feb 08 #Javascript
JavaScript Event学习第九章 鼠标事件
Feb 08 #Javascript
JavaScript 类似flash效果的立体图片浏览器
Feb 08 #Javascript
You might like
很温暖很温暖的Lester Young
2021/03/03 冲泡冲煮
Zend Framework入门教程之Zend_Db数据库操作详解
2016/12/08 PHP
Thinkphp5.0自动生成模块及目录的方法详解
2017/04/17 PHP
php 人员权限管理(RBAC)实例(推荐)
2017/05/24 PHP
jQuery中判断一个元素是否为另一个元素的子元素(或者其本身)
2012/03/21 Javascript
在JavaScript中实现类的方式探讨
2013/08/28 Javascript
jquery中获取id值方法小结
2013/09/22 Javascript
Javascript 多浏览器兼容总结(实战经验)
2013/10/30 Javascript
一个简单的实现下拉框多选的插件可移植性比较好
2014/05/05 Javascript
详解js闭包
2014/09/02 Javascript
C#中使用迭代器处理等待任务
2015/07/13 Javascript
js操作数组函数实例小结
2015/12/10 Javascript
15款最好的Bootstrap在线编辑器
2016/08/03 Javascript
AngularJS基于ui-route实现深层路由的方法【路由嵌套】
2016/12/14 Javascript
Node.js如何响应Ajax的POST请求并且保存为JSON文件详解
2017/03/10 Javascript
把vue-router和express项目部署到服务器的方法
2018/02/21 Javascript
vue+element-ui+ajax实现一个表格的实例
2018/03/09 Javascript
关于vue-router的那些事儿
2018/05/23 Javascript
node.js自动上传ftp的脚本分享
2018/06/16 Javascript
vue从一个页面跳转到另一个页面并携带参数的解决方法
2019/08/12 Javascript
Python多线程编程(五):死锁的形成
2015/04/05 Python
通过源码分析Python中的切片赋值
2017/05/08 Python
zookeeper python接口实例详解
2018/01/18 Python
python中将两组数据放在一起按照某一固定顺序shuffle的实例
2019/07/15 Python
python实现自动化报表功能(Oracle/plsql/Excel/多线程)
2019/12/02 Python
pytorch绘制并显示loss曲线和acc曲线,LeNet5识别图像准确率
2020/01/02 Python
Python基于network模块制作电影人物关系图
2020/06/19 Python
Python如何使用神经网络进行简单文本分类
2021/02/25 Python
html5通过canvas实现刮刮卡效果示例分享
2014/01/27 HTML / CSS
KIKO比利时官网:意大利彩妆品牌
2017/07/23 全球购物
西班牙灯具网上商店:Lampara.es
2018/06/05 全球购物
企业法人授权委托书范本
2014/09/23 职场文书
领导干部作风建设工作总结
2014/10/23 职场文书
员工辞职信范文
2015/03/02 职场文书
校长师德表现自我评价
2015/03/04 职场文书
新闻简讯格式及范文
2015/07/22 职场文书