NuGet 直接搜索安装 ServiceStack.Redis 代码如下: 超过6000次 提示收费 Helper: using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq ...
分类:
Web程序 时间:
2018-07-11 19:49:12
阅读次数:
172
1.配置文件 app.config log4net.config 2.Helper调用类 3.测试代码 github地址:https://github.com/842549829/log4net ...
分类:
Web程序 时间:
2018-07-10 12:57:23
阅读次数:
202
Delphi之TWinControl支持PaintTo方法,可以方便的Paint有句柄控件,而此方法,TGraphicControl没有。 这使得有时需要Paint无句柄控件诸如TLabel时颇为费事,能否扩充它? 可以。使用class helper for技术,通过其Parent,仍然调用TWin ...
helper.py 1 import pymysql 2 3 from settings import Config 4 5 def connect(): 6 conn = Config.POOL.connection() 7 cursor = conn.cursor(cursor=pymysql. ...
分类:
数据库 时间:
2018-06-23 18:50:37
阅读次数:
214
helper.py import pymysql from settings import Config def connect(): conn = Config.POOL.connection() cursor = conn.cursor(cursor=pymysql.cursors.DictCu ...
分类:
数据库 时间:
2018-06-19 21:34:32
阅读次数:
244
问题: 具体报错如下图 简单说是定位不到元素。 解决办法:暂时不熟悉XPath的语法,认为可能是脚本中 XPath 描述(采用了相对元素定位方法)有误 , 通过xpath-helper重归抓取了元素的完整xpath路径, 重新运行脚本,成功。 ...
分类:
其他好文 时间:
2018-06-19 16:09:59
阅读次数:
1266
今天开始回顾一下老师页面的代码 先看下html的页面效果图 首先看下如何实现页面渲染老师列表,这里实现了两种方法 先看视图函数,老师页面对应的视图还是是teacher 然后我们来看视图函数 下面是视图函数所有的代码 先看方法1是如何实现的 这里我们导入了我们自己写的page_helper的类,用来构 ...
分类:
其他好文 时间:
2018-06-17 12:28:25
阅读次数:
144
git config --global credential.helper store git checkout -b 本地分支名x origin/远程分支名xgit fetch origin 远程分支名x:本地分支名xgit checkout master //切换分支git stash git ...
分类:
其他好文 时间:
2018-06-10 23:06:43
阅读次数:
227
一、配置记住密码 设置 -> git 编辑本地 .git/config 增加[credential] helper = store 1[credential]2helper = store 保存,输入一次密码后第二次就会记住密码了配置ssh支持多个git 步骤一 用ssh-keygen命令生成一组新... ...
分类:
其他好文 时间:
2018-06-08 14:24:10
阅读次数:
279
//在th中根据排序方向生成拍序列的展示标记 public static MvcHtmlString orderColumn(this HtmlHelper helper, string orderField, string orderWay, string fieldName) { StringB ...
分类:
Web程序 时间:
2018-05-31 17:22:24
阅读次数:
192