上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 33 下一页
摘要: 三. Vue 2 1. Vue 基础 1) 环境准备 安装脚手架 npm install -g @vue/cli -g 参数表示全局安装,这样在任意目录都可以使用 vue 脚本创建项目 创建项目 vue ui 使用图形向导来创建 vue 项目,如下图,输入项目名 选择手动配置项目 添加 vue ro 阅读全文
posted @ 2022-11-18 22:02 我也有梦想呀 阅读(116) 评论(0) 推荐(0)
摘要: ### 1、是什么? axios 它的底层是用了 XMLHttpRequest(xhr)方式发送请求和接收响应,xhr 相对于之前讲过的 fetch api 来说,功能更强大,但由于是比较老的 api,不支持 Promise,axios 对 xhr 进行了封装,使之支持 Promise,并提供了对请 阅读全文
posted @ 2022-11-18 21:54 我也有梦想呀 阅读(900) 评论(0) 推荐(0)
摘要: # 第二章. Javascript 它是一种脚本语言,可以用来更改页面内容,控制多媒体,制作图像、动画等等 例子 * 修改页面内容 js 代码位置 ```html ``` 引入 js 脚本 ```html ``` * 注意,到了框架之后,引入方式会有不同 ## 1. 变量与数据类型 ### 声明变量 阅读全文
posted @ 2022-11-15 20:54 我也有梦想呀 阅读(51) 评论(0) 推荐(0)
摘要: 第一章. HTML 与 CSS HTML 是什么:即 HyperText Markup language 超文本标记语言,咱们熟知的网页就是用它编写的,HTML 的作用是定义网页的内容和结构。 HyperText 是指用超链接的方式组织网页,把网页联系起来 Markup 是指用 <标签> 的方式赋予 阅读全文
posted @ 2022-11-15 20:52 我也有梦想呀 阅读(100) 评论(0) 推荐(0)
摘要: 1、首先创建一个maven项目 2、导入相关的依赖 注意:lombok的版本 <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www 阅读全文
posted @ 2022-11-14 23:06 我也有梦想呀 阅读(140) 评论(0) 推荐(0)
摘要: pom.xml <properties> <maven.compiler.source>17</maven.compiler.source> <maven.compiler.target>17</maven.compiler.target> <project.build.sourceEncoding 阅读全文
posted @ 2022-11-14 20:58 我也有梦想呀 阅读(1078) 评论(0) 推荐(0)
摘要: List<String> list = new ArrayList<>(); boolean a = list.stream().anyMatch("a"::equals); // If the stream is empty then false is returned and the predi 阅读全文
posted @ 2022-11-10 13:36 我也有梦想呀 阅读(72) 评论(0) 推荐(0)
摘要: 问题现象 路由 页面效果 解决办法 路由添加中配置 alwaysShow: true, // 树形层级显示 页面效果 阅读全文
posted @ 2022-10-30 22:00 我也有梦想呀 阅读(67) 评论(0) 推荐(0)
摘要: 在pmo.xml中加入两个依赖 <!--增加两个配置--> <dependency> <groupId>io.swagger</groupId> <artifactId>swagger-annotations</artifactId> <version>${swagger-models.versio 阅读全文
posted @ 2022-10-30 21:51 我也有梦想呀 阅读(38) 评论(0) 推荐(0)
摘要: 1、导入相关依赖 <!--swagger--> <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-boot-starter</artifactId> <version>3.0.0</version> </depend 阅读全文
posted @ 2022-10-25 21:47 我也有梦想呀 阅读(163) 评论(0) 推荐(0)
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 33 下一页