先来段官方文档压压惊。。property(fget=None, fset=None, fdel=None, doc=None)Return a property attribute.fget is a function for getting an attribute value, likewise...
分类:
编程语言 时间:
2015-06-30 18:01:49
阅读次数:
111
函数的定义函数名称只能包含字母、数字、下划线或$,且不能以数字开头。定义时可用函数定义表达式或者函数声明语句。var f = function fact(x){}函数定义表达式包含名称,名称将作为函数的局部变量,在函数内部使用,代指函数。函数声明语句不是真正的语句,不能出现在循环、条件、try/ca...
分类:
编程语言 时间:
2015-06-30 17:55:20
阅读次数:
125
表的列名比较多的时候,手工一个个的写列名比较麻烦,这个函数可以让人偷偷懒create or replace function f_GetCols(p_TableName in varchar2/*获取表中所有列名 前后添加select from*/) RETURN varchar2isResult ...
分类:
数据库 时间:
2015-06-30 17:49:58
阅读次数:
153
Store.on('beforeload', function (s) { s.baseParams['Year'] = Ext.getCmp("year").getValue(); s.baseParams['Month'] = Ext.getCmp("...
分类:
Web程序 时间:
2015-06-30 17:42:39
阅读次数:
149
二叉树: <script type="text/javascript">
??????????? //定义每个节点的模型,每个节点都分中心节点,左右节点三个节点,节点也可能成为树
?? ??? ??? ?function arrayAct(){
?? ???...
分类:
编程语言 时间:
2015-06-30 16:38:30
阅读次数:
150
pjblog: pjblog3/common/function.asp PowerEasy: PowerEasy/inlcude/PowerEasy.Common.Security.asp PowerEasy/RSSFeed.asp...
分类:
Web程序 时间:
2015-06-30 16:36:53
阅读次数:
115
Date.prototype.format = function(format){ var o = { "M+" : this.getMonth()+1, //month "d+" : this.getDate(), //day "h+" : this.getHours(), //hour "m+"...
分类:
Web程序 时间:
2015-06-30 16:17:29
阅读次数:
112
Lua中的数据类型:
Boolean
Number
String
Function
Print(type(“Hello world”)) àstring
Print(type(10*4.2)) ànumber
Print(type(print)) àfunction
Print(type(type)...
分类:
其他好文 时间:
2015-06-30 15:02:45
阅读次数:
99
在看imadjust代码时,看到stretchlim函数,特此分析一下,代码注释如下function lowhigh = stretchlim(varargin)%STRETCHLIM Find limits to contrast stretch an image.% LOW_HIGH = S.....
分类:
其他好文 时间:
2015-06-30 14:29:06
阅读次数:
150
在之前学习AngularJS的过程中,都是用到了显式依赖注入,比如:
<scripttype="text/javascript">
angular.module(‘app‘,[])
.controller(‘Controller1‘,function($scope){
$scope.something=‘helloworld‘;
});
</script>
依赖注入$scope。这么写有个弊端,在发..
分类:
Web程序 时间:
2015-06-30 13:12:28
阅读次数:
219