摘要: import rarfile import itertools import string import concurrent.futures def extract_rar(rar_path, password): """尝试解压RAR文件,返回解压是否成功。""" try: with rarfi 阅读全文
posted @ 2024-11-05 11:21 假装新手 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 先安装Python3 在pip install rarfile 新建一个txt的文本文件,在把尾缀改成.py 复制下面的代码,就可以运行了 import rarfileimport itertoolsimport string def extract_rar(rar_path, password): 阅读全文
posted @ 2024-11-04 00:16 假装新手 阅读(24) 评论(0) 推荐(0) 编辑
摘要: 运行 cnpm install events --save 不要用 npm package.json "events": "^3.3.0", 报错 Module "events" has been externalized for browser compatibility. Cannot acce 阅读全文
posted @ 2023-07-23 09:49 假装新手 阅读(147) 评论(0) 推荐(0) 编辑
摘要: { "Print to console": { "prefix": "v3", "body": [ "<script setup>", "import { ref, reactive, onBeforeMount, onMounted, onBeforeUpdate, onUpdated, onBe 阅读全文
posted @ 2023-06-28 01:28 假装新手 阅读(150) 评论(0) 推荐(0) 编辑
摘要: create-react-app 创建项目 打开config配置 如果是已经上传到git上去 就不需要 输入git命令了 直接运行就可以 git init git add git commit -m 'init' npm run eject 配置less 百度上就有 "less": "^3.13.1 阅读全文
posted @ 2022-05-25 17:10 假装新手 阅读(72) 评论(0) 推荐(0) 编辑
摘要: iframe基本内涵 通常我们使用iframe直接直接在页面嵌套iframe标签指定src就可以了。 <iframe src="demo_iframe_sandbox.htm"></iframe> 但是,有追求的我们,并不是想要这么low的iframe. 我们来看看在iframe中还可以设置些什么属 阅读全文
posted @ 2022-04-08 10:30 假装新手 阅读(274) 评论(0) 推荐(0) 编辑
摘要: <!-- tsx 简单图表组件 --> <template> <div class="chart" :style="{height:height,width:width}" :id="id"> </div> </template> <script > // 这里可以导入其他文件(比如:组件,工具js 阅读全文
posted @ 2021-12-23 11:28 假装新手 阅读(80) 评论(0) 推荐(0) 编辑
摘要: <!-- tsx --> <template> <div class="package"> <div v-if="inlineButton&&inlineButton.length>0"> <a-button v-for="i,index in inlineButton" :key="index" 阅读全文
posted @ 2021-12-23 11:24 假装新手 阅读(72) 评论(0) 推荐(0) 编辑
摘要: 2021-12-23 写入mixins里面做成公用的 npm install jspdf npm i html2canvas import html2canvas from "html2canvas" import jsPDF from "jspdf" export const download = 阅读全文
posted @ 2021-12-23 11:02 假装新手 阅读(108) 评论(0) 推荐(0) 编辑
摘要: 1.组件的之间的传参调方法v3、 props(常用) $emit(常用) expose / ref(常用) provide / inject(常用) Vuex(常用) $attrs v-model mitt v2、 props(常用) $emit / v-on(常用) slot(常用) ref(常用 阅读全文
posted @ 2021-11-22 01:55 假装新手 阅读(25) 评论(0) 推荐(0) 编辑