以保存的用户名密码删除,先找到变量存在的位置: git config -l To help track down the setting, I'd try to use: git config --local credential.helper git config --global credent ...
分类:
其他好文 时间:
2017-09-11 22:37:00
阅读次数:
389
枚举是绑定到唯一的常量值的一组符号名称(成员)。在枚举中,成员可以通过身份进行比较,枚举本身可以迭代。 1.Enum模块 该模块定义了四个枚举类,可用于定义唯一的名称和值集:Enum,IntEnum,Flag和IntFlag。它还定义了一个装饰器,unique()和一个helper,auto。 2. ...
分类:
编程语言 时间:
2017-09-11 21:23:43
阅读次数:
262
1、先cd到根目录,执行git config --global credential.helper store命令 [root@iZ25mi9h7ayZ ~]# git config --global credential.helper store 2、执行之后会在.gitconfig文件中多加红色 ...
分类:
系统相关 时间:
2017-09-03 21:03:06
阅读次数:
154
本系列教程是自己在工作中使用到而记录的,如有错误之处,请给与指正 文章目录 MVC4 开篇 第一章 初识MVC4 第二章 下山遇虎(@helper) 第三章 Models模块属性详解 第四章 在MVC4.0中对脚本以及样式表的引用变化 第五章 MVC之Bundle详解 ...
分类:
Web程序 时间:
2017-09-01 00:53:45
阅读次数:
275
@model DefaultModel ... ...
分类:
其他好文 时间:
2017-08-24 18:03:40
阅读次数:
164
兼容ie8(很实用,复制过来,仅供技术参考,更详细内容请看源地址:http://www.cnblogs.com/iyangyuan/archive/2013/12/12/3471227.html) ...
分类:
Web程序 时间:
2017-08-24 16:43:47
阅读次数:
196
兼容ie8(很实用,复制过来,仅供技术参考,更详细内容请看源地址:http://www.cnblogs.com/iyangyuan/archive/2013/12/12/3471227.html) 很多时候,我们需要更加复杂的if判断逻辑,显然默认的if不能满足我们的需求。 本例中,利用Handle ...
分类:
Web程序 时间:
2017-08-24 16:42:11
阅读次数:
177
用于后台登录验证post_controller_constructor<?php
classAuth{
private$CI;
private$loginUri=‘welcome/login‘;
private$loginAuth=FALSE;
private$sessId=null;
publicfunction__construct(){
$this->CI=&get_instance();
$this->CI->load->helper(‘ur..
分类:
其他好文 时间:
2017-08-18 21:26:41
阅读次数:
117
代码 Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> 1 // // Microsoft Data Access Application Block ...
分类:
数据库 时间:
2017-08-18 09:34:01
阅读次数:
137
MVC中有DropDownList方法,挺好用,可是最常用的需求,一组checkboxlist咋没个类似方法呢?郁闷之余,自己做一个吧,直接上代码 public static MvcHtmlString CheckBoxList(this HtmlHelper helper, string name ...
分类:
Web程序 时间:
2017-08-17 12:49:07
阅读次数:
230