-
vue的上传图片
<!-- 上传 --> <input type="file" ref="myfile1" @change="readImg1" id="fileImg1"> data(){ return { url:'', } } readImg1: function() { let myfile = this.$ -
Element UI中el-date-picker设置日期格式
为el-date-picker添加属性value-format=“yyyy-MM-dd” Element UI中el-date-picker设置日期格式 - 简书 (jianshu.com) -
解决vuepdf不显示章印问题
找到 node_modules/pdfjs-dist/es5/build/pdf.worker.js 这个目录 if (data.fieldType "Sig") { data.fieldValue = null; //pdf预览不显示红章问题 // _this3.setFlags(_util.An -
关于vue-pdf无法显示pdf合同填充内容
关于vue-pdf无法显示pdf合同填充内容 - 简书 (jianshu.com) -
vue 项目中分别使用 vue-pdf 插件和内嵌 iframe 实现 PDF 文件预览,缩放,旋转,下载,保存等功能,打印乱码
(6条消息) vue 项目中分别使用 vue-pdf 插件和内嵌 iframe 实现 PDF 文件预览,缩放,旋转,下载,保存等功能 ?_『九离~空白』的博客-CSDN博客_iframe 旋转 -
springboot访问静态资源
@Configuration public class WebConfig extends WebMvcConfigurationSupport { @Override protected void addResourceHandlers(ResourceHandlerRegistry regist -
springboot的@Transactional回滚
@Transactional 相当于 @Transactional(rollbackFor=RuntimeException.class) ,只对抛出的 RuntimeException 异常,才会事务回滚。 @Transactional 注解只能应用到 public 的方法上。 @Transact -
使用JDK的keytool生成p12证书
(6条消息) 《JDK学习》使用JDK的keytool生成p12证书_tomatocc的博客-CSDN博客_keytool p12 keytool 错误: java.io.FileNotFoundException: tomatocc.keystore (拒绝访问。) 报错原因:因为jdk安装在C盘 -
itext的基本使用,以及盖章之类
(6条消息) 【itext学习之路】 (第一篇)创建一个简单的pdf文档_tomatocc的博客-CSDN博客 所用依赖 <dependency> <groupId>com.itextpdf</groupId> <artifactId>itextpdf</artifactId> <version>5 -
springboot上传资源到本地,数据库中存url,以及vue上传下载数据,以及在下载时后缀会多个下划线的处理
import java.io.File; import java.io.IOException; import java.net.URLEncoder; import java.util.UUID; import org.springframework.beans.factory.annotatio