模板语言: {{ obj }}在 Django 模板中遍历复杂数据结构的关键是句点字符 ..的用法: 访问列表索引 list = [1, 2, 3] {{ list.0 }} # 等于1 访问字典的值 dict = {'k1': 'v1', 'k2': 'v2'} {{ dict.k1 }} # 等 ...
分类:
其他好文 时间:
2018-12-09 16:24:02
阅读次数:
166
Context context = Context.Current;try{ string query = "update SpendApplication set dr='1' where TaskID={0}"; query = String.Format(query,context.Task.... ...
分类:
其他好文 时间:
2018-12-01 20:08:57
阅读次数:
296
1.常见操作1>enumerate()//返回序列的索引和元素foriinenumerate([1,2,3])://返回list的索引和元素foriinenumerate({‘k1‘:1,‘k2‘:2})://返回字典的索引和key值2>zip(l1,l2)//将可迭代对象打包成一个个元祖\字典3>range(1,10,2)//类似于切片[::2]2.概念
分类:
编程语言 时间:
2018-11-30 13:59:02
阅读次数:
194
ABP提供了在启动时配置模块的基础设施和模型。 1.配置ABP 配置ABP是在模块的PreInitialize方法中完成的,例如: public class SimpleTaskSystemModule : AbpModule { public override void PreInitialize ...
分类:
其他好文 时间:
2018-11-29 01:37:08
阅读次数:
225
Cure Given an integer nn, we only want to know the sum of 1/k21/k2 where kk from 11 to nn. Input There are multiple cases. For each test case, there i ...
分类:
其他好文 时间:
2018-11-28 22:27:19
阅读次数:
212
提供下载的链接:https://download.csdn.net/download/qq_41436774/10437391 1、打开Eclipse,点击Help > Install new SoftWare,如下图: 2、点击Add添加新的插件Name:Activiti BPMN 2.0 des ...
分类:
系统相关 时间:
2018-11-26 13:30:07
阅读次数:
355
#匿名函数关键字:lambda def add(x,y): return x+y #匿名函数 add = lambda x,y:x+y print(add(1,2)) #求value值对应最大的key值 dic={'k1':10,'k2':100,'k3':30} def func(key): re... ...
分类:
其他好文 时间:
2018-11-25 14:43:45
阅读次数:
246
1 $perPage = 20; 2 $curPage = 1; 3 4 $k2 = ''; 5 $list = AdminLogModel::where('id', '>', '0'); 6 if(input('?post.k2') || input('?get.k2')) { 7 $k2 ... ...
分类:
Web程序 时间:
2018-11-25 01:21:35
阅读次数:
203
第一步,在MVC项目 Application_Start开启支持模块化开发 需在Web项目下面新建PlugIns文件夹 第二步,在项目中新建PlugIns文件夹,名字随便,目的是将所有的模块项目放到该目录下面 新建模块项目 第三部,添加Abp相关文件,Abp版本最好和其他项目一直 在nuget分别添 ...
分类:
其他好文 时间:
2018-11-14 14:33:40
阅读次数:
237