<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi ...
分类:
Web程序 时间:
2021-03-08 14:01:59
阅读次数:
0
from PyPDF2 import PdfFileWriter, PdfFileReader # 开始页 start_page = 0 # 截止页 end_page = 5 output = PdfFileWriter() pdf_file = PdfFileReader(open("3.pdf" ...
分类:
编程语言 时间:
2021-03-08 13:30:17
阅读次数:
0
修改host文件 sudo vim /etc/host 添加以下内容 # Github?151.101.185.194 github.global.ssl.fastly.net140.82.114.3 github.com 151.101.112.133 assets-cdn.github.com ...
分类:
系统相关 时间:
2021-03-08 13:06:17
阅读次数:
0
How to deploy EBS CSI on AWS EKS in China region? ISSUE Cannot access k8s.gcr.io repository in China region. Prerequisites Fetch the Account ID and sa ...
分类:
其他好文 时间:
2021-03-08 13:03:04
阅读次数:
0
DML基本操作 1.增加数据 方式一:固定参数 xml: <!-- 因为增,删,改的返回值都是int类型,所以不用写resultType--> <insert id="addDept"> insert into dept values (80,"计算机","上海") </insert> java: ...
分类:
其他好文 时间:
2021-03-06 15:10:31
阅读次数:
0
买了一本台湾出版的苏轼词选,其中的注音都是注音符号,上网查了一下感觉没有很简洁的说明,干脆自己做一个吧。 序号 示例 1 ㄅ b 八 [bā] {ㄅㄚ} 2 ㄆ p 怕 [pà] {ㄆㄚˋ} 3 ㄇ m 妈 [mā] {ㄇㄚ} 4 ㄈ f 分 [fēn] {ㄈㄣ} 5 ㄉ d 搭 [dā] {ㄉㄚ} ...
分类:
其他好文 时间:
2021-03-06 15:07:28
阅读次数:
0
1、引用pom文件 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-jdbc</artifactId> </dependency> <dependency> <group ...
分类:
编程语言 时间:
2021-03-06 14:34:47
阅读次数:
0
插槽 将元素作为承载分发内容的出口 <todo-button> Add todo </todo-button> // to-do 组件模板 <button> <slot></slot> </button> 插槽可以包含任何的模板代码 HTML 组件 如果template中没有包含一个元素,则该组件起 ...
分类:
其他好文 时间:
2021-03-06 14:21:29
阅读次数:
0
git add 命令可将该文件添加到暂存区。 添加一个或多个文件到暂存区: git add [file1] [file2] ... 添加指定目录到暂存区,包括子目录: git add [dir] 添加当前目录下的所有文件到暂存区: git add . 以下实例我们添加两个文件: $ touch RE ...
分类:
其他好文 时间:
2021-03-05 13:19:45
阅读次数:
0
一、引用两个js库 <script src="/js/jspdf.debug.js"></script> <script src="/js/html2canvas.js"></script> 二、实现导出PDF /** * 导出PDF * @param id */ exportPdf:functio ...
分类:
Web程序 时间:
2021-03-05 13:08:22
阅读次数:
0