会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Thomas's Blog
吾尝终日而思矣
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
13
14
15
16
17
18
19
20
21
···
112
下一页
2021年7月28日
java.lang.UnsatisfiedLinkError: no A in java.library.path
摘要: 出现如下错误 A:libA.so java.lang.UnsatisfiedLinkError: no A in java.library.path: [/usr/java/packages/lib, /usr/lib/arm-linux-gnueabihf/jni, /lib/arm-linux-
阅读全文
posted @ 2021-07-28 14:04 thomas_blog
阅读(484)
评论(0)
推荐(0)
2021年7月27日
pi4j与Spring Boot
摘要: 源码地址 https://github.com/Pi4J/pi4j 使用jar包 编译完成,会生成jar包,后面直接使用这个jar包 maven编译配置 配置jar包依赖(使用刚才编译好的) 以scope为system的方式 systemPath是jar包真实路径,其他随意设置 <dependenc
阅读全文
posted @ 2021-07-27 20:18 thomas_blog
阅读(564)
评论(0)
推荐(0)
2021年7月24日
迪文屏串口修改数据
摘要: 读取数据 // 发送(1001是变量地址,01是长度) 5A A5 04 83 1001 01 // 接收(04 d2是数据,代表“1234”) 5a a5 06 83 10 01 01 04 d2 写入数据变量 // 发送(1001是数据变量地址,04D2是数据) 5A A5 05 82 1001
阅读全文
posted @ 2021-07-24 11:26 thomas_blog
阅读(1015)
评论(0)
推荐(0)
迪文屏常用串口指令
摘要: T5屏读版本号 // 发送 5A A5 04 83 000F 01 // 接收 5a a5 06 83 00 0f 01 25 21 T5屏读取页面ID // 发送 5A A5 04 83 0014 01 // 接收(表示当前第1页) 5a a5 06 83 00 14 01 00 01
阅读全文
posted @ 2021-07-24 11:09 thomas_blog
阅读(1620)
评论(0)
推荐(0)
2021年7月22日
postcss-px-to-viewport移动端布局
摘要: cnpm install postcss-px-to-viewport --save-dev .postcssrc.js module.exports = { "plugins": { "postcss-px-to-viewport": { unitToConvert: "px", // 要转化的单
阅读全文
posted @ 2021-07-22 22:46 thomas_blog
阅读(76)
评论(0)
推荐(0)
vue-lazyload延迟加载
摘要: cnpm install vue-lazyload --save import Lazyload from 'vue-lazyload' Vue.use(Lazyload) <template> <div id="app"> <!-- <img src="./assets/logo.png"> --
阅读全文
posted @ 2021-07-22 19:46 thomas_blog
阅读(115)
评论(0)
推荐(0)
fastclick延迟300ms
摘要: 解决移动端click延迟300ms cnpm install fastclick --save import Fastclick from 'fastclick' Fastclick.attach(document.body);
阅读全文
posted @ 2021-07-22 19:15 thomas_blog
阅读(27)
评论(0)
推荐(0)
vue Toast设计 案例
摘要: <template> <div id="Toast"> <p class="msg">{{msg}}</p> </div> </template> <script> export default { name: 'Toast', data() { return { msg: 'hello Toast
阅读全文
posted @ 2021-07-22 18:48 thomas_blog
阅读(50)
评论(0)
推荐(0)
2021年7月21日
vue获取对象个数
摘要: <script> export default { name: 'HelloWorld', data() { return { msg: 'Welcome to Your Vue.js App', goods: [{ src: 'girl.jpg', link: 'http://wwww.baidu
阅读全文
posted @ 2021-07-21 14:04 thomas_blog
阅读(1407)
评论(0)
推荐(0)
vue offsetTop顶部距离
摘要: <template> <div class="hello"> <ul class="content" ref="content"> </ul> </div> </template> <script> export default { name: 'HelloWorld', mounted() { c
阅读全文
posted @ 2021-07-21 11:44 thomas_blog
阅读(1376)
评论(0)
推荐(0)
上一页
1
···
13
14
15
16
17
18
19
20
21
···
112
下一页
公告