文档 https://git-scm.com/book/zh/v2 下载 mac https://git-scm.com/download/mac Linux https://git-scm.com/download/linux Windows https://git-scm.com/downloa ...
分类:
其他好文 时间:
2019-02-01 17:13:30
阅读次数:
215
上一篇导出excel,是导出已知固定列,有时候我们根本就不知道有几列、列名是什么,因此这些动态列,可以用Dictionary<string,string>接收。 1、实体Student上加上一个字段Dictionarys Student.cs 2、表头表体类上加上动态列的添加表头与表体 Epplus ...
使用 Istio 可以很方便地实现微服务间的访问控制。本文演示了使用 Denier 适配器实现拒绝访问,和 Listchecker 适配器实现黑白名单两种方法。 ...
分类:
其他好文 时间:
2019-02-01 11:28:53
阅读次数:
267
http://www.codeceo.com/article/you should learn regex.html Regular Expressions (Regex):正则表达式,软件工程中最为强大,且广泛适用,令人信服的技术之一。从验证电子邮件地址到执行复杂的代码重构器,正则表达式的用途非常 ...
分类:
其他好文 时间:
2019-01-31 10:32:50
阅读次数:
254
变量一般用小写,官方建议下划线比如ljy_book,常量一般用大写 一、字符串语法 字符串可以用单引号或者双引号引用1、输出字符串message="sadfsdf"print(message.title()) #首字母大写print(message.upper()) #全部大写print(messa ...
分类:
编程语言 时间:
2019-01-31 10:29:11
阅读次数:
219
1.flask的简单使用 from flask import Flask # from flask import make_response app = Flask(__name__) app.config.from_object('config') print(app.config['DEBUG'... ...
分类:
其他好文 时间:
2019-01-30 15:58:28
阅读次数:
157
nginx的介绍 参考资料: 1、https://www.cnblogs.com/wcwnina/p/8728391.html,nginx的作用、代理、正向代理、反向代理、负载均衡算法 2、http://tengine.taobao.org/book/chapter_02.html,nginx的原理 ...
分类:
其他好文 时间:
2019-01-29 20:45:32
阅读次数:
187
1.直接在github上clone对应的代码 , 地址为: https://github.com/golang/xxxxxxx.git xxxxxxx为所缺的库名 , 比如net库 text库 https://github.com/golang/net.git https://github.com/ ...
分类:
其他好文 时间:
2019-01-29 20:35:31
阅读次数:
361
表结构如下: create table HH_BOOK_GOOD ( ID VARCHAR2(32) not null, BOOKID VARCHAR2(32) not null, GOODID VARCHAR2(32) not null, GOODPRICE FLOAT not null, GOO ...
分类:
数据库 时间:
2019-01-29 18:27:51
阅读次数:
236
docment 为list对象 大致格式如下 存入Excel的样式如下: 1 , 2 3, 4 ...
分类:
编程语言 时间:
2019-01-29 15:03:27
阅读次数:
206