document.write("");
摘要: 1. 首先,评分允许评半颗星,使用 allow-half <template> <Rate allow-half v-model="valueHalf" /> </template> <script> export default { data () { return { valueHalf: 2. 阅读全文
posted @ 2022-03-03 15:28 人间春风意 阅读(320) 评论(0) 推荐(0) 编辑
摘要: Blender 一个非常不错的免费的3D、2D软件 超级不错 我初步的按照网上的动画教程,做了一个很简单的 不断跳动的独眼球 为什么独眼?一开始我是画了两个眼睛,结果最后总是出了点问题,没有办法copy帧, 所以最后一次,一步一步,步步专心,才弄出来了一个可以copy帧的动画,之前的都是弄着弄着帧的 阅读全文
posted @ 2022-02-28 09:45 人间春风意 阅读(92) 评论(0) 推荐(0) 编辑
摘要: 有云,有人,有紫色花群 一个简单的,动态的HTML页面, 感兴趣可以copy看一下效果, 至于我为什么不上效果图?等以后有空我再上(遥遥无期) <!doctype html> <html> <head> <meta charset="utf-8"> <title>天空飘着五朵云</title> <s 阅读全文
posted @ 2022-02-25 14:34 人间春风意 阅读(30) 评论(0) 推荐(0) 编辑
摘要: 一个开源的项目已经完成了这个功能 app_process-shell-use,这个项目网上讲解的,很多,我这边就把操作时一些简要步骤说明一下 但是该方式有缺点:必须要先USB连接,debug的时候,运行第13步, 断开USB 无法再通过Socket运行adb shell命令 国内github又访问不 阅读全文
posted @ 2022-02-23 16:58 人间春风意 阅读(1117) 评论(0) 推荐(0) 编辑
摘要: #-*- coding:utf-8 -*- import io import sys sys.stdout = io.TextIOWrapper(sys.stdout.buffer,encoding='utf-8') msg = "'" # print("好的") print(msg) PS:这只是 阅读全文
posted @ 2022-02-16 18:00 人间春风意 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 1. mac上安装 postman 访问:https://www.postman.com/downloads/ 选择 apple chip 2. 访问 https://github.com/hlmd/Postman-cn/releases 下载对应版本的汉化包 最近电脑一直访问不了github,但是 阅读全文
posted @ 2022-02-12 09:34 人间春风意 阅读(3698) 评论(0) 推荐(0) 编辑
摘要: 用来测试Websocket的时候,写了一个测试的Html demo 可以发送文本,文件(这里用的是图片文件,input 选择图片,然后回显,再将其转为Base64,然后传递一个json的字符串) <!DOCTYPE html> <title>WebSocket</title> <h2>HTML We 阅读全文
posted @ 2022-02-07 15:44 人间春风意 阅读(327) 评论(0) 推荐(0) 编辑
摘要: 非常简易的SpringBoot后台项目 1. 创建项目 使用IDEA创建 Spring项目,或在 https://start.spring.io/ 、 https://start.aliyun.com/bootstrap.html上生成后端初始化项目 springboot 2.5.6 maven 选 阅读全文
posted @ 2022-02-07 15:28 人间春风意 阅读(487) 评论(0) 推荐(0) 编辑
摘要: 类名.class 如 String.class 阅读全文
posted @ 2022-02-07 08:23 人间春风意 阅读(1276) 评论(0) 推荐(0) 编辑
摘要: maven 添加websocket ,按照一篇博文引入 websocket https://www.cnblogs.com/likun10579/p/5450209.html 在浏览器控制台测试是否连通 VM386:1 WebSocket connection to 'ws://localhost: 阅读全文
posted @ 2022-02-06 11:01 人间春风意 阅读(205) 评论(0) 推荐(0) 编辑