摘要:
JSON是一种轻量级的数据交换格式,在现在的web开发中,是非常常见的。在没有方便的工具之前,我们或许会使用拼字符串的形式来生成json数组,今天我们使用一个json-lib.jar包来为我们实现生成json的功能。所必须的包有:commons-httpclient-3.1.jarcommons-lang-2.4.jarcommons-logging-1.1.1.jarjson-lib-2.4-jdk15.jarezmorph-1.0.6.jarcommons-collections-3.2.1.jar1、bean转为JsonUser u = new User();u.setAge(22);u 阅读全文
摘要:
Step 1: 首先声明定义一个FormPanel,如下:Ext.define('FormPanel', { extend: 'Ext.Panel', config: {}});Step 2: 现在给这个FormPanel加上标题栏Ext.define('FormPanel', { extend: 'Ext.Panel', config: { fullscreen: true,//设置全屏 scrollable: { direction: 'vertical'//设置允许垂直滚动 }, pad... 阅读全文