void twb_xd_std::set_attr( std::vector<NXOpen::NXObject *> objects , string attr_category, string attr_title , string attr_value ) { NXOpen::Session * ...
分类:
其他好文 时间:
2021-06-18 19:37:36
阅读次数:
0
--文章表create table Article ( ID int primary key identity(1,1) not null --ID Title varchar(60) not null --标题 )--评论表create table Comment ( ID int primary ...
分类:
其他好文 时间:
2021-06-18 19:36:26
阅读次数:
0
及时渲染视图的方法 有时候遇到给一个数组或者对象添加值或修改值,页面并不会及时渲染出修改过的数据,这时可以实用this.$set来解决这个问题 在使用this.$set(target, key, value)时,target为需要添加属性的对象,key是要添加的属性名,value为属性key对应的值 ...
分类:
其他好文 时间:
2021-06-18 19:35:53
阅读次数:
0
配置中心 例如: 携程的apollo , furion 配置中心, 是用来配置一些开关值,灰度值 等容易变化的配置项。一般场景是需要手动更新配置值, 也可以通过程序更新。 一般来讲配置中心的key 是需要在配置中心提前注册好的。 缓存 例如: redis, memcached 缓存一些热点数据, 防 ...
分类:
其他好文 时间:
2021-06-17 17:12:38
阅读次数:
0
查询排序order by,正序asc 倒序desc。 分组查询group by,分组查询后筛选使用having; 默认值约束 default; 非空约束not null;注:非空字段必须赋值。唯一约束unique; 主键(非空+唯一)primary key; 自增长zerofill; 外键CONST ...
分类:
数据库 时间:
2021-06-17 16:52:03
阅读次数:
0
python中max 与lambda函数联用 dic={'k1':10,'k2':100,'k3':30} print(dic[max(dic,key=lambda k:dic[k])]) #输出结果为100 当看到*max(dic,key=lambda k:dic[k])*时懵逼了,这怎么比大小, ...
分类:
编程语言 时间:
2021-06-17 16:43:38
阅读次数:
0
Markdown learning h2 h3 h4 font hello,world! hello,world! hello,world! hello,world! hello,world! hello,world! quote choose Java, split lines picture h ...
分类:
其他好文 时间:
2021-06-17 16:39:11
阅读次数:
0
搜索关键字:F5 自动补全关键字:ctrl+shift+空格 1.关键字 Comment 意思: 注释 2.关键字 set Variable 设置变量 格式 : ${a} set Variable 100 3.关键字 catenate 格式 ${str} catenate dog monkey du ...
分类:
其他好文 时间:
2021-06-16 17:35:33
阅读次数:
0
input("\n\nPress the enter key to exit.") def functionList(): # 定义功能菜单 print(" 请输入序号选择您要得功能 ") print("") print("-" * 14 + "1.查看学生信息" + "-" * 14) print ...
分类:
编程语言 时间:
2021-06-16 17:31:20
阅读次数:
0
写在前边: list和tuple都是有序的,取值方式如list[1],tuple[1]。 list列表,是一种可变序列 tuple元组,是一种不可变序列,初始化后就不能修改 dict和set都是无序的。 dict字典,等同于map。dict存储键值对,如dict1 = {"key":"value"} ...
分类:
编程语言 时间:
2021-06-15 18:53:57
阅读次数:
0