发布时间:2013-03-10 22:55:35
数据模型是对真实世界事物的抽象,model相当于DB中的table 或JAVA中的class;Ext.onReady(function(){//创建模型类的两种方法 //DB中对于对象的描述:table person(name,age,email); //使用Ext.define创建模型类 Ext.define("person",{ extend:"Ext.data.Model", fields:[ {name:'name',type:'string'}, {name:'.........【阅读全文】
发布时间:2013-03-10 19:29:09
/******js书写类的方法*********/一:函数的形式function user(){ this.name = 'zhangsan'; this.age = 26;// 属性 var email = "11@qq.com"; var getEmail = function(){//方法 return .........【阅读全文】
发布时间:2013-03-01 09:58:15
nginx的用户验证和apache差不多1.在配置文件中添加验证语句: 添加auth_basic "auth user" //名字任起 auth_basic_user_file /etc/nginx/htpasswd.conf //目录自己定2.创建上面所定的目录/etc/nginx/htpasswd.conf 利用apache所带的密码生成工具htpasswd.........【阅读全文】