摘要: VALUE插入一行 VALUES插入一行 可以看出在插入单行时,使用VALUES比较快 VALUE插入多行 VALUES插入多行 对比之下,插入多行时,用VALUE比较快 TRANSLATE with x English Arabic Hebrew Polish Bulgarian Hindi Po 阅读全文
posted @ 2022-05-26 18:56 快了星球 阅读(419) 评论(0) 推荐(0)
摘要: <!-- swagger3.0--> <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-boot-starter</artifactId> <version>3.0.0</version> </dependency> 阅读全文
posted @ 2022-05-26 18:40 快了星球 阅读(162) 评论(0) 推荐(0)
摘要: 解析对象为JSON JSON.parse() .内容 获取相应参数 v-if="flag" data() { return { flag:"", }; }, mounted() { // 判断用户或管理员if (JSON.parse(window.localStorage.getItem("user 阅读全文
posted @ 2022-05-26 18:08 快了星球 阅读(38) 评论(0) 推荐(0)
摘要: 首先@ApiOperation注解不是Spring自带的,它是是swagger里的注解@ApiOperation是用来构建Api文档的@ApiOperation(value = “接口说明”, httpMethod = “接口请求方式”, response =“接口返回参数类型”, notes = 阅读全文
posted @ 2022-05-26 13:48 快了星球 阅读(413) 评论(0) 推荐(0)
摘要: @Configuration public class CorsConfig implements WebMvcConfigurer { @Override public void addCorsMappings(CorsRegistry registry) { registry.addMappin 阅读全文
posted @ 2022-05-26 13:46 快了星球 阅读(126) 评论(0) 推荐(0)
摘要: 组件 axios main.js import axios from 'axios'Vue.prototype.$axios = axios; axios.defaults.withCredentials = true axios.defaults.baseURL='http://localhost 阅读全文
posted @ 2022-05-26 11:34 快了星球 阅读(163) 评论(0) 推荐(0)
摘要: GET 安全且幂等获取表示变更时获取表示(缓存)200(OK) - 表示已在响应中发出204(无内容) - 资源有空表示301(Moved Permanently) - 资源的URI已被更新303(See Other) - 其他(如,负载均衡)304(not modified)- 资源未更改(缓存) 阅读全文
posted @ 2022-05-26 11:31 快了星球 阅读(40) 评论(0) 推荐(0)
摘要: 查询所有地址 netsh wlan show profiles 对某个地址进行查询 netsh wlan show profiles name="CU_URZK" key=clear TRANSLATE with x English Arabic Hebrew Polish Bulgarian Hi 阅读全文
posted @ 2022-05-26 11:28 快了星球 阅读(31) 评论(0) 推荐(0)
摘要: 定义在标签内 @keyup.enter="方法" // 点击回车键登录keyDown(e) {console.log(e);// 回车则执行登录方法 enter键的ASCII是13if (e.keyCode 13) {this.submitClick(); // 定义的登录方法}}, 周期创建与销毁 阅读全文
posted @ 2022-05-26 11:26 快了星球 阅读(42) 评论(0) 推荐(0)
摘要: "store": "^2.0.12", main.js 引入store import store from "./store"; Vue.prototype.$axios = axios; router.beforeEach((to, from, next) => { if (to.meta.req 阅读全文
posted @ 2022-05-26 11:24 快了星球 阅读(140) 评论(0) 推荐(0)