自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(16)
  • 资源 (9)
  • 收藏
  • 关注

原创 vscode 搜索中文

【代码】vscode 搜索中文。

2023-08-10 19:42:39 344

原创 react material-ui tab 自动转大写的问题解决

react material-ui tab 自动转大写的问题解决

2023-02-13 19:47:58 154

原创 ERROR Invalid options in vue.config.js: child “outputDir“ fails because [“outputDir“ is not allowed

修改构建规则后,lint报ERROR Invalid options in vue.config.js: child “outputDir” fails because [“outputDir” is not allowed to be empty]起因本地修改了项目单页构建的规则,结果提交代码时git pre-commit的钩子触发了vue-cli-service lint,表示校验不通过,并报ERROR Invalid options in vue.config.js: child "outp

2020-07-22 18:28:14 7786

原创 npm link工具的使用

npm linknpm link (in package dir)npm link [<@scope>/]<pkg>[@<version>]alias: npm ln作用将本地包link到全局仓库(创建一个符号链接),接着就可以将这个全局符号链接作为一个依赖包安装在某个使用它的项目中。npm会通过解析符号链接将链接的程序包“快照”到其当前状态。方便...

2020-05-08 11:47:02 296

原创 使用腾讯云cos-js-sdk 本地报错

使用腾讯云cos-js-sdk-v5时,本地启动报错This relative module was not found:* ../lib/md5 in ./node_modules/cos-js-sdk-v5/src/util.js原因:被windows拦截了处理:关闭这个拦截,不过已删除的文件不能恢复,需要删除依赖重新安装找到./node_modules/cos-js-sd...

2020-04-26 10:39:41 4300

原创 webpack构建失败:Found bindings for the following environments: - Linux 64-bit with Node.js 12.x

欢迎使用Markdown编辑器webpack构建失败,报错:Node Sass could not find a binding for your current environment: Linux 64-bit with Node.js 10.xFound bindings for the following environments: - Linux 64-bit with No...

2020-04-24 16:49:00 2742

原创 vue源码笔记

// 缓存一个对某个字符串执行某个计算规则的结果,避免重复计算带来的开销function cached (fn) { var cache = Object.create(null); return (function cachedFn (str) { var hit = cache[str]; return hit || (cache[st...

2018-12-29 17:33:04 146

原创 关于前端模块化module.exports、exports、export、export default的区别

1.module.exports 是commonJS规范下的模块导出方法,可以:    // foo.js    module.exports.x = 1;    module.exports.y = 2;   // main.js    require('./foo') // { x: 1, y: 2 }2.exports是module.exports在node环境下...

2018-12-11 16:59:00 681

原创 自定义前端ui库u-components的使用

1.npm i u-components -S2.main.js引入import Vue from 'vue'import uComps from 'u-components'import 'u-components/src/assets/css/app.scss'let { UDatePicker, USelect, UPager, UInput, UText...

2018-12-11 16:19:53 1324

原创 jqury实现的横向排序的瀑布流

用jquery实现的横向排序的瀑布流布局

2017-07-04 16:28:27 1792

转载 jquery实现的返回顶部+侧边栏功能

jquery实现的简单的返回顶部和侧边栏效果。

2017-07-04 08:36:55 876

转载 ubuntu:Reading package lists... Error!

E: Unable to parse package file /var/lib/apt/lists/us.archive.ubuntu.com_ubuntu_dists_xenial-backports_main_binary-amd64_Packages (1)E: Encountered a section with no Package: headerE: Problem with

2017-06-22 14:04:35 322

转载 nginx修改nginx.conf文件后reload出现的错误

invalid PID number错误:1.sudo nginx -c nginx.conf路径2.重新nginx -s reload

2017-06-20 11:28:08 4670

原创 HTML设置input搜索框onfocus样式

input搜索框onfocus设置圆角边框样式html: css:#middle1-search{height: 32px;width: 596px;position: absolute;right:202px;border-radius: 30px;font-size: 14px;color: rgb(153,153,153);backgr

2017-05-25 10:23:45 5317

转载 hibernate HQL学习笔记

1.实体查询:String hql=”from User ”;List list=session.CreateQuery(hql).list();存在继承判定,会将User对象的子类对象也检索出来。其他语法:from User user where user.age=20;from User user where user.age between 20 and 30;f

2017-04-25 14:29:28 188

原创 hibernate学习笔记

个人笔记

2017-04-25 14:18:49 163

bootstrap-3.3.7-dist.zip

bootstrap3最新资源

2017-07-10

eclipse-inst-win64.exe

最新版eclipse安装程序(官网下的)

2017-07-07

jquery-3.2.1.min.js

jquery-3.2.1

2017-07-07

getclor(一款获取屏幕任意位置颜色rgb的实用小工具).rar

一款获取屏幕任意位置颜色rgb的实用小工具,免费好用

2017-07-07

boot2docker.iso

最新版的 boot2docker.iso

2017-07-06

纯javascript实现json与对象的互相转换项目

纯javascript实现json与对象的互相转换完整项目,原创

2017-07-05

横向排序的瀑布流jquery实现,完整项目

自己做的一个横向排序的瀑布流模块的实现,结构简单,实用性强

2017-07-04

精通CSS:高级Web标准解决方案(第2版)

目录结构清晰的《精通CSS:高级Web标准解决方案(第2版)》pdf资源

2017-06-28

空空如也

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

TA关注的人

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