https://my.oschina.net/acitiviti/blog/283892 activiti学习笔记3-用户与用户组 收藏 安世博 发表于 3年前 阅读 5507 收藏 10 点赞 0 评论 2 收藏 收藏 安世博 发表于 3年前 阅读 5507 收藏 10 点赞 0 评论 2 安世博 ...
分类:
其他好文 时间:
2017-06-16 16:54:31
阅读次数:
783
MySQL 进阶 左右连表: join 上下连表: union #自动去重 (当两张表里的数据,有重复的才会自动去重) union all #不去重 例如: select sid,sname from sname union select tid,tname from teacher select ...
分类:
数据库 时间:
2017-06-13 23:51:57
阅读次数:
303
WCUserInfo.h #import <Foundation/Foundation.h> #import "Singleton.h" @interface WCUserInfo : NSObject singleton_interface(WCUserInfo); @property (nona ...
分类:
移动开发 时间:
2017-06-13 14:16:20
阅读次数:
246
Dict内置函数#!/user/bin/evnpython
#-*-coding:utf-8-*-
userinfo={
1:‘alex‘,
‘age‘:19,
3:‘tony‘
}
printuserinfo
#classdict(object):
#"""
#dict()->newemptydictionary
#dict(mapping)->newdictionaryinitializedfromamappingobject‘s
#(key,value)pairs
#dict(it..
分类:
编程语言 时间:
2017-06-12 22:23:10
阅读次数:
238
本节内容 models操作 1.1 models操作 单表查询: curd(增删改查) 多表查询: # 一次性查出所有的数据,进行一次跨表查询 只能在有ForeignKey的表中正向使用, select_realated(): 进行一次跨表查询 user_list = Models.UserInfo ...
分类:
编程语言 时间:
2017-06-12 18:48:43
阅读次数:
233
ajax实现聊天功能: 代码: ajax.js: 接口: ...
分类:
Web程序 时间:
2017-06-10 19:34:08
阅读次数:
418
string agentInfo = userInfo.Attribute19.ToString(); string[] myAgent = agentInfo.Split(new string[] { "$#$" }, StringSplitOptions.None); if (myAgent.L ...
分类:
其他好文 时间:
2017-06-08 23:50:28
阅读次数:
396
一、实体 实体 在C#中的写法 在C#中 写法(1): public class UserInfo { public int UserID { get; set; } } 写法(2): public class UserinfoEntity { private string userid; ’定义字 ...
分类:
其他好文 时间:
2017-06-07 10:12:48
阅读次数:
210
iWatch报错: Optional (Error Domin = com.apple.healthkit Code = 5 "Autherization request canceled" Userinfo = 0x145580c0 {NSLocalizedDescription = Author ...
分类:
其他好文 时间:
2017-06-04 13:43:49
阅读次数:
155
1. Model操作 - v = models.UserInfo.objects.all() - v = models.UserInfo.objects.values("xx") - v = models.UserInfo.objects.values_list() - v = models.Use ...
分类:
其他好文 时间:
2017-06-02 01:19:45
阅读次数:
263