会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
天妖姥爷
博客园
首页
联系
管理
上一页
1
···
4
5
6
7
8
9
10
下一页
2019年11月22日
java 集成 海康 SDK
摘要: 1.pom 依赖jna,最好用 3.0.9,其他的少文件 <dependency> <groupId>com.sun.jna-local</groupId> <artifactId>jna-local</artifactId> <version>3.0.9</version> </dependenc
阅读全文
posted @ 2019-11-22 15:08 天妖姥爷
阅读(2666)
评论(0)
推荐(0)
2019年11月21日
ps 快捷键
摘要: 1、工具箱(多种工具共用一个快捷键的可同时按【Shift】加此快捷键选取)矩形、椭圆选框工具 【M】裁剪工具 【C】移动工具 【V】套索、多边形套索、磁性套索 【L】魔棒工具 【W】喷枪工具 【J】画笔工具 【B】橡皮图章、图案图章 【S】历史记录画笔工具 【Y】橡皮擦工具 【E】铅笔、直线工具 【
阅读全文
posted @ 2019-11-21 09:49 天妖姥爷
阅读(648)
评论(0)
推荐(0)
python中== 和 is 的区别
摘要: == 和 is 的区别 x = y = [1, 2, 3] z = [1, 2, 3] print(x == y) # True print(x == z) # True print(x is y) # True print(x is z) # False print(id(x)) # 441678
阅读全文
posted @ 2019-11-21 09:41 天妖姥爷
阅读(228)
评论(0)
推荐(0)
2019年11月20日
微信开发者工具快捷键汇总
摘要: 操作命令 打开快捷键面板 F1 打开/关闭工具栏 Ctrl+Shift+T 打开/关闭模拟器 Ctrl+Shift+D 打开/关闭调试器 Ctrl+Shift+M 格式化文件 Shift+Alt+F 编译 Ctrl+B 刷新 Ctrl+R 删除行 Ctrl+Shift+K 向上复制行 Shift+A
阅读全文
posted @ 2019-11-20 15:02 天妖姥爷
阅读(1164)
评论(0)
推荐(0)
IDEA常用快捷键
摘要: alt ctrl V,生成变量名 Ctrl+P,可以显示参数信息 Ctrl+Q,显示注释文档 Ctrl+N,可以快速打开类 Ctrl+Shift+N,可以快速打开文件 Ctrl+E,最近的文件 Alt+Insert,可以生成构造器/Getter/Setter等 Ctrl+Alt+L,格式化代码 Ct
阅读全文
posted @ 2019-11-20 14:59 天妖姥爷
阅读(151)
评论(0)
推荐(0)
非前后端分离项目使用vue继承,提取公共方法和filters
摘要: var vue_fn = { filters:{ formatDate: function (value) { if(value==null){ return ""; } let date = new Date(value); let year = date.getFullYear(); let m
阅读全文
posted @ 2019-11-20 14:50 天妖姥爷
阅读(658)
评论(0)
推荐(0)
Plupload上传插件中文帮助文档
摘要: 配置参数 实例化一个plupload对象时,也就是 new plupload.Uploader(),需要传入一个对象作为配置参数。后面内容中出现的plupload实例均是指new plupload.Uploader()得到的实例对象 属性类型默认值描述 browse_button String /
阅读全文
posted @ 2019-11-20 14:44 天妖姥爷
阅读(2340)
评论(0)
推荐(0)
idea 提示 string template are not supported current JavaScrip Version 的解决
摘要: 1.意思是不支持当前js版本,但是idea默认的js版本较低,这时点击File 处理方式: settings > Languages & frameworks > javascript >右侧选择 language version 选择 react JSX, 保存即可
阅读全文
posted @ 2019-11-20 14:42 天妖姥爷
阅读(582)
评论(0)
推荐(0)
nginx的分配方式
摘要: upstream模块相关说明1、upstream模块应放于nginx.conf配置的http{}标签内2、upstream模块默认算法是wrr (权重轮询 weighted round-robin) 一、分配方式Nginx的upstream支持5种分配方式,下面将会详细介绍,其中前三种为Nginx原
阅读全文
posted @ 2019-11-20 14:35 天妖姥爷
阅读(563)
评论(0)
推荐(0)
nginx相关配置的内容
摘要: 1.nginx.conf的内容 #user nobody; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #pid lo
阅读全文
posted @ 2019-11-20 14:32 天妖姥爷
阅读(218)
评论(0)
推荐(0)
上一页
1
···
4
5
6
7
8
9
10
下一页
公告