06 2022 档案
摘要:背景: 使用jwt.io验证自定义token出现Invalid Signature 解决: 使用jwt.io验证token,要输入secret 参考资料: https://learnku.com/laravel/t/27013 https://www.e-learn.cn/topic/484582
阅读全文
摘要:背景: 对vue的props里的属性赋值,页面上看赋值后props里的属性值被改变了,但是在控制台发现报错:Avoid mutating a prop directly since the value will be overwritten whenever 解决办法: 把props里的属性,放到d
阅读全文
摘要:参考资料: https://blog.csdn.net/LQQianLee/article/details/80421768
阅读全文
摘要:参考资料: https://www.cnblogs.com/wwyz/p/6809869.html
阅读全文
摘要:背景: spring boot开发的项目,需要对jar包进行一些处理,使用了xjar。 一、在启动类的pom.xml添加如下配置 <!-- 添加 XJar 依赖 --> <dependency> <groupId>com.github.core-lib</groupId> <artifactId>x
阅读全文
摘要:参考资料: https://www.jb51.net/article/223892.htm https://blog.csdn.net/xhwangSGTL/article/details/111991017
阅读全文
摘要:参考资料: https://juejin.cn/post/7090581543659241480
阅读全文
摘要:参考资料: https://zetcode.com/springboot/banner/
阅读全文
摘要:错误信息: parent.relativePath' of POM com.fast:fast-workflow-spring-boot-starter:1.0-SNAPSHOT (D:\project\spring-auto-parent\fast-workflow-spring-boot-sta
阅读全文
摘要:背景: 如果你的项目开发使用的是若依,前端需要安装依赖,这个时候选择合适的版本,可以避免安装依赖时报错,经过实践,截至目前,比较合适的版本如下: node 14.19.3 使用nvm进行安装,命令如下: nvm install 14.19.3 nvm use 14.19.3
阅读全文
摘要:参考资料: https://www.codenong.com/2206598/
阅读全文
摘要:console.log("%c%s", "color: red; background: yellow; font-size: 24px;", "警告!"); 参考资料: https://www.webhek.com/post/add-styles-console.html
阅读全文
摘要:参考资料: https://cloud.tencent.com/developer/article/1506869
阅读全文
摘要:子组件想要使用父组件的参数,最简单的方法是使用this.$parent 参考资料: https://www.jianshu.com/p/20eb82bc53e7 https://www.cnblogs.com/panwudi/p/15784649.html
阅读全文