自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(20)
  • 收藏
  • 关注

转载 springmvc+mybatis需要的jar包与详解

https://www.cnblogs.com/luohengstudy/p/7772109.html 转载于:https://www.cnblogs.com/yunhemeihe/p/10912082.html

2019-05-23 15:18:00 119

转载 你总是对自己太好

其实我是没资格哭的,以前笑得有多开心,现在哭的就有多狼狈。 大家都在爬山,好像厉害的人总是能快速找到通向更高一层的阶梯,特们不是笨鸟,却先飞了,吃了螃蟹。 傻逼的我,把路都走绝了,才想到去找梯子, 甚至有更傻逼的我,妄想不要梯子,直接飞过去, 落后太远了,登顶的愿望也太迫切了, 你只能怪自己, 骄傲的人依旧骄傲,堕落的人依旧堕落, 你可以选择用自己的双脚爬上去, 不得不告...

2019-05-22 12:46:00 107

转载 sass参考手册

http://sass.bootcss.com/docs/sass-reference/ 转载于:https://www.cnblogs.com/yunhemeihe/p/10897804.html

2019-05-21 08:56:00 106

转载 Mapper

当一个请求发送到servlet容器的时候,容器先会将请求的url减去当前应用上下文的路径作为servlet的映射url, 比如我访问的是http://localhost/test/aaa.html,我的应用上下文是test,容器会将http://localhost/test去掉,剩下的/aaa.html部分拿来做servlet的映射匹配。 这个映射匹配过程是有顺序的,而且当有一个se...

2019-05-20 11:22:00 85

转载 mybatis入门视频总结

1.基础知识 2. 原生态jdbc问题总结 3.mybatis是什么 4.工程结构 5.SqlMapConfig.xml文件 6.sqlmap 包下新建user.xml文件(namespace,parameterType,resultType) 7.在SqlMapConfig.xml文件中注册user.xml文件 8. ...

2019-05-16 10:53:00 69

转载 center----Iframe 用法的详细讲解

把iframe解释成“浏览器中的浏览器“很是恰当 <iframe frameborder=0 width=170 height=100 marginheight=0 marginwidth=0 scrolling=no src=http://www.163.com></iframe> <IFRAME>用于设置文本或图形的浮动图文框或容器。 ...

2019-05-11 15:53:00 159

转载 ResultSet RS_resultxtgg=connDbBean.executeQuery(sqlxtgg);

<%Stringsqlxtgg="select*fromdxwhereleibie='系统公告'";ResultSetRS_resultxtgg=connDbBean.executeQuery(sqlxtgg);while(RS_resultxtgg.next()){out.print(RS_resultxtgg.getString("content"));...

2019-05-11 15:35:00 1371

转载 new String(request.getParameter("userID").trim().getBytes("8859_1"))的含义是什么?

new String(request.getParameter("userID").trim().getBytes("8859_1")) request.getParameter("userID"), 得到userID的值request.getParameter("userID").trim() 将这个值去掉两边的空格reque...

2019-05-11 15:14:00 587

转载 request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+request.getContextPath...

String path = request.getContextPath();String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; <base href=" <%=basePath%>"> 这个...

2019-05-11 15:04:00 325

转载 Stylus

Stylus是一个CSS预处理器。 那么在SaaS,Less和Stylus中,为什么选择后者呢? 因为Stylus是来源于Node.js社区,与js关系密切,所以基于Vue.js的开发,我们选择使Stylus。1.配置Stylus环境 npm install stylus --save-dev npm install stylus-loader --save-dev npm...

2019-05-07 09:52:00 386

转载 fastclick

fastclick:处理移动端click事件300毫秒延迟。 安装: npm install fastclick -S 之后,在main.js中引入,并绑定到body。 import FastClick from 'fastclick' FastClick.attach(document.body); 转载于:https://www.cnblo...

2019-05-07 09:42:00 60

转载 物理像素[设备像素] & 逻辑像素[CSS像素];

为什么移动端CSS里面写了1px,实际上看起来比1px粗 了解设备物理像素和逻辑像素的同学应该很容易理解,其实这两个px的含义其实是不一样的, UI设计师要求的1px是指设备的物理像素1px,而CSS里记录的像素是逻辑像素,它们之间存在一个比例关系, 可以用javascript中的window.devicePixelRatio来获取,也可以用媒体查询的-webkit-min-dev...

2019-05-07 09:38:00 133

转载 踩坑---vue-cli搭建的项目中localhost不能访问

只需要在config文件夹里面的index.js文件里面的module.exports下面的dev中的 host:'localhost' 改为 host:'0.0.0.0' ,然后重启服务器 转载于:https://www.cnblogs.com/yunhemeihe/p/10807656.html...

2019-05-04 10:20:00 810

转载 npm --save-dev 和 --save 的区别

转载 》》》 1. npm install 在安装 npm 包时,有两种命令参数可以把它们的信息写入 package.json 文件, 一个是npm install--save 另一个是 npm install –save-dev, --save 会把依赖包名称添加到 package.json 文件 dependencies 键下 --save-dev 则添加到 packag...

2019-05-03 20:58:00 63

转载 vue踩坑--细节决定成败

1.错误示例 . 2.错误的地方 3.修改后代码 4.错误分析 转载于:https://www.cnblogs.com/yunhemeihe/p/10806306.html

2019-05-03 20:34:00 112

转载 fallowing-travelvue

1. 2.Header.vue 3.Swiper.vue . 4.Icons.vue 解决了上次轮播图--分页小圆点不显示的问题,本来以为图片应该都可以,结果换了轮播长图之后,小圆点听话的显示出啦 而且找到了去哪旅行的 图标位置 转载于:https://www.cnblogs.com/yunhemeihe/p/10805129.html...

2019-05-03 14:29:00 59

转载 学会不怕

人会变的,一切都在变,越害怕什么,越要迎难而上,等你跨越过去,其实也不过如此 转载于:https://www.cnblogs.com/yunhemeihe/p/10805098.html

2019-05-03 14:22:00 63

转载 eslint代码规范检测

1.如果在 vue init webpack projectname 时选择了eslint(Yes),则 npmuninstalleslint 2.在webpack.base.conf.js里删掉下面 方框里的部分 3. 切到项目目录,重新运行npm run start 转载于:https://www.cnblogs.com/yunhemeih...

2019-05-03 14:11:00 115

转载 三次握手+四次挥手

谈谈你对TCP三次握手和四次挥手的理解(from yygmind) 转载于:https://www.cnblogs.com/yunhemeihe/p/10635700.html

2019-04-01 12:44:00 59

转载 小白的学习笔记

1-border margin:12px10px14px0; 四个属性值是按照顺时针顺序写的,四个值分别是上、右、下、左,即分别是margin-top:12px;margin-right:10px;margin-bottom:14px;margin-left:0; padding:010px10px; 第一个值是padding-top的值,第二个值是padding-r...

2019-03-31 09:20:00 100

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除