恢复内容开始 路由跳转有两种方式: 1.通过params属性传值,该方法在跳转页面刷新时数据会丢失 methods: { /** * 跳转子菜单 */ goSub (param) { this.click = true this.$router.push({ // path: `/${url}` n ...
分类:
其他好文 时间:
2021-06-11 18:52:07
阅读次数:
0
效果图 import java.awt.*; import java.awt.image.BufferedImage; import java.util.Random; /** * 生成4个字符的验证码,背景颜色、字体颜色、字体类型都随机生成,另外加上干扰线条 */ public class Ver ...
分类:
编程语言 时间:
2021-06-11 18:45:09
阅读次数:
0
We can share some information about fishing, and how to use the Lakespy. If you still have problem, please send me email to cenxudong@126.com, and cal ...
分类:
其他好文 时间:
2021-06-11 18:42:42
阅读次数:
0
look at me Some common mistakes Don't use localized function names. Only english names (such as SUM, IF, VLOOKUP, etc) are supported. Don't use semico ...
分类:
其他好文 时间:
2021-06-11 18:40:41
阅读次数:
0
题目:公园游玩 题意:依次经过k个点,求出其最短总路径的方案数. 题解:点A(x1,y1)到点B(x2, y2)的最短距离方案数为(高中组合知识:距离为n,向下走m次到达目的地最短距离的方案数): n = x2 - x1 + y2 - y1 m = x2 - x1 C(n, m) = n! / (m ...
分类:
其他好文 时间:
2021-06-11 18:22:12
阅读次数:
0
bs4解析—html语法 HTML(Hyper Text Markup Language)超文本标记语言 最最基础的一些基本语法,想要了解更多请联系我,带你重返军校 <h1 >I love you</h1><h2>I love you too</h2> <p>I love you too too</ ...
分类:
其他好文 时间:
2021-06-11 18:08:43
阅读次数:
0
问题:两个module,A module引用了B module的一个类,A module添加了 B module的依赖,且这个类也通过注解注册到了bean工厂,但是A module 使用@Autowire 自动装配bean时报错, 以为可能是伪报错,运行也报错了 解决方法: 在启动类的SpringB ...
分类:
编程语言 时间:
2021-06-10 18:53:06
阅读次数:
0
一、普通对象转Json 1、继承BaseTypeHandler 覆盖setNonNullParameter(),getNullableResult(),getNullableResult(),getNullableResult()方法 public class ObjectJsonHandler<T ...
分类:
数据库 时间:
2021-06-10 18:44:33
阅读次数:
0
1、application.properties test.name=111 test.names='111','bbb','ccca' 2、配置类 /** * @Author jijiecong * @Date 2021/6/4 17:13 * @Version 1.0 * @Descriptio ...
分类:
其他好文 时间:
2021-06-10 18:35:45
阅读次数:
0
FileOutputStream类 <1> 基本概念 java.io.FileOutputStream类:用于将图像数据之类的原始字节流写入到输出流中。 <2> 常用的方法 方法声明 功能介绍 1.FileOutputStream(String name) 根据参数指定的文件名来构造对象 2.Fil ...
分类:
编程语言 时间:
2021-06-10 17:40:43
阅读次数:
0