Flexbox布局入门笔记
摘要:1、display:flex 设定为Flexbox布局容器。 2、flex-direction: row表示在水平方向展开可伸缩项;column表示在垂直方向展开可伸缩项;总之就是定义主轴(侧轴方向)。 3、justify-content:可伸缩项目在主轴方向的对齐方式【align-content:
阅读全文
posted @
2019-07-28 22:59
qqhfeng16
阅读(150)
推荐(0) 编辑
ASP.Net一般处理程序Session用法
摘要:1.在aspx和aspx.cs中,都是以 Session["type"]="aaa" 和 string aaa=Session["type"].ToString() 或使用 2.在ashx文件中,若要对Session进行成功的读写,要添加命名空间和接口,否则context.Session["type
阅读全文
posted @
2019-07-28 17:39
qqhfeng16
阅读(333)
推荐(0) 编辑
AngularJS 插值字符串 $interpolate
摘要:定义: $interpolate:编译一段带有嵌入标记的语句,然后返回一个interpolate(插值)函数。使用: $interpolate(text,[mustHaveException],[trustContext],[allOrNothing])text[String] 需要被编译的字符串(
阅读全文
posted @
2019-07-23 21:53
qqhfeng16
阅读(207)
推荐(0) 编辑
浅谈AngularJS的$parse服务
摘要:首先看看官方关于$parse的api $parse 作用:将一个AngularJS表达式转换成一个函数 Usage $parse(expression) arguments expression:需要被编译的AngularJS语句 returnsfunc(context, locals) context[object]:针对你要解析的语句,这个对象中含有你要解析的语句中的表达式(通常是一...
阅读全文
posted @
2019-07-23 21:30
qqhfeng16
阅读(399)
推荐(0) 编辑
VsCode 解决vim插件,不能使用ctrl+c的问题(目标卸载im)
摘要:VsCode中,使用VIM插件后,ctrl+c不能用 可以通过 File -> Preference -> Settings中 vim.useCtrlKeys 选项设置为 false 图1是在INSERT模式下,使用ctrl+c复制,按下去之后,就别成图2的NORMAL模式了,按ctrl+v就变成了
阅读全文
posted @
2019-07-22 22:05
qqhfeng16
阅读(850)
推荐(0) 编辑
win10远程桌面 CredSSP加密Oracle修正的解决办法
摘要:小编在登录远程桌面的时候一直显示由于CredSSP加密Oracle修正 的警告,连接不上。最终通过以下办法解决了 双击打开 点击应用完成即可,如果不生效就重启电脑。
阅读全文
posted @
2019-07-18 21:51
qqhfeng16
阅读(530)
推荐(0) 编辑
fatal:'origin' does not appear to be a git repository fatal:Could not read from remote repository
摘要:天gitlab中遇到的问题:当 git push origin branch_name时遇到报错如下:fatal:'origin' does not appear to be a git repositoryfatal:Could not read from remote repository原因:
阅读全文
posted @
2019-07-15 23:17
qqhfeng16
阅读(2637)
推荐(0) 编辑
fatal: 不是一个有效的对象名:'master'。
摘要:听说git比svn的branch功能好,所以装了个msysgit玩.执行完了git init操作后想建branch,用git branch develop命令,结果报错,说 fatal: Not a valid object name: 'master' 看了这个篇文章http://stackove
阅读全文
posted @
2019-07-15 22:21
qqhfeng16
阅读(2308)
推荐(0) 编辑
git@github.com: Permission denied (publickey).
摘要:2019年04月22日 20:32:40 xiyuan1223 阅读数 90 2019年04月22日 20:32:40 xiyuan1223 阅读数 90 git@github.com: Permission denied (publickey). 首先用 ssh -vT git@github.co
阅读全文
posted @
2019-07-15 22:04
qqhfeng16
阅读(455)
推荐(0) 编辑
ubuntu18.04使用vscode报pylint is not install错误
摘要:1、安装pip:sudo apt-get install pip,如果使用python3则需要安装pip3:sudo apt-get install python3-pip2、使用pip安装pylint:pip install pylint或者pip3 install pylint3、在vscode
阅读全文
posted @
2019-07-14 21:51
qqhfeng16
阅读(271)
推荐(0) 编辑
处理程序“PageHandlerFactory-Integrated”在其模块列表中有一个错误模块“Manag
摘要:新装IIS,然后发布网站,运行出现如下错误提示 处理程序“PageHandlerFactory-Integrated”在其模块列表中有一个错误模块“ManagedPipelineHandler” 于是去网上找资料,轻松搞定。o(∩_∩)o 哈哈 原因: vs2010默认的是4.0框架,4.0的框架是
阅读全文
posted @
2019-07-13 17:45
qqhfeng16
阅读(648)
推荐(0) 编辑
在SQL Server中,为何都建议禁止 VIA 协议,VIA协议具体内容是什么?
摘要:在SQL Server 在SQL Server中,为何都建议禁止 VIA 协议,VIA协议具体内容是什么? 中,为何都建议禁止 VIA 协议,VIA协议具体内容是什么? 在SQL Server中,为何都建议禁止 VIA 协议,VIA协议具体内容是什么?
阅读全文
posted @
2019-07-13 17:07
qqhfeng16
阅读(1991)
推荐(0) 编辑
不能在本机启动SQL Server服务错误代码126(要在协议里面禁用所有别的VIA,是怎么回事?)
摘要:在启动数据库sql服务的时候提示【Windows 不能在 本地计算机 启动 SQL Server 。 有关更多信息,查阅系统事件日志。如果这是非 Microsoft 服务,请与服务厂商联系,并参考特定服务错误代码126。】 在启动数据库sql服务的时候提示【Windows 不能在 本地计算机 启动
阅读全文
posted @
2019-07-13 17:05
qqhfeng16
阅读(981)
推荐(1) 编辑
input file 无法打开手机端文件选择器
摘要:版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/m0_37805167/article/details/78538044手机端对input file的accept格式有特定的要求,必须要image/.这种的格式,否则会在点击上传时弹出无法打开文件选择
阅读全文
posted @
2019-07-05 09:17
qqhfeng16
阅读(2365)
推荐(0) 编辑
ASP.NET 一般处理程序 接收文件上传
摘要:public void ProcessRequest(HttpContext context) { context.Response.ContentType = "text/plain"; StringBuilder sb = new StringBuilder(); string resultcode = ...
阅读全文
posted @
2019-07-04 14:38
qqhfeng16
阅读(293)
推荐(0) 编辑