上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 45 下一页
摘要: var list = { "province" : province, "city" : city, "county" : county } $.ajax({ url : "postOption", type : "post", contentType : "application/json", d 阅读全文
posted @ 2022-11-03 11:05 lwx_R 阅读(29) 评论(0) 推荐(0)
摘要: 1.获得选中option的值/文本 var text = $("#select option:selected").text(); var value = $("#select option:selected").val(); 阅读全文
posted @ 2022-11-03 11:03 lwx_R 阅读(50) 评论(0) 推荐(0)
摘要: 1.官网下载安装Nodejs 2.cmd测试 3.npm配置 3.1 NodeJs下建立"node_global"及"node_cache"两个文件夹 3.2 管理员方式运行cmd 输入 npm config set prefix "D:\nodejs\node_global" npm config 阅读全文
posted @ 2022-11-03 10:26 lwx_R 阅读(51) 评论(0) 推荐(0)
摘要: 1.安装vant 1.1 打开项目路径,使用 cd ../ 确保路径是整个项目路径 1.2 输入 npm i @vant/weapp -S --production 1.3 工具->构建npm 2.使用 2.1 在app.json中 "usingComponents": { "van-overlay 阅读全文
posted @ 2022-11-02 21:04 lwx_R 阅读(681) 评论(0) 推荐(0)
摘要: 1.pom.xml <!-- lombok--> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.16.20</version> <scope>provided< 阅读全文
posted @ 2022-11-01 12:21 lwx_R 阅读(22) 评论(0) 推荐(0)
摘要: 1.pom.xml <!-- mybatisPlus--> <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-boot-starter</artifactId> <version>2.3</version> < 阅读全文
posted @ 2022-11-01 12:16 lwx_R 阅读(12) 评论(0) 推荐(0)
摘要: 1.数据验证 日常项目开发中,对于前端提交的表单,后台接口接收到表单数据后,为了程序的严谨性,通常后端会加入 业务参数的合法校验操作来避免程序的非技术性bug,这里对于客户端提交的数据校验 SpringBoot通过spring-boot-starter-validation模块包含了数据校验的工作。 阅读全文
posted @ 2022-10-30 17:13 lwx_R 阅读(132) 评论(0) 推荐(0)
摘要: 1.事务支持 在使用]dbc作为数据库访问技术时,Spring Boot框架定义了基于jdbc的PlatformTransactionManager接口 的实现DataSourceTransactionManager,并在Spring Boot应用启动时自动进行配置。 这里Spring Boot集成 阅读全文
posted @ 2022-10-30 11:54 lwx_R 阅读(48) 评论(0) 推荐(0)
摘要: 1.什么是定时调度 在SpringBoot中有Java自带的java.util.Timer类 SpringBoot自带的Scheduled来实现,Scheduled 在Spring3.X引入,默认SpringBoot自带该功能使用起来也很简单,在启动类级别添加 @EnableScheduling注解 阅读全文
posted @ 2022-10-30 11:11 lwx_R 阅读(40) 评论(0) 推荐(0)
摘要: 1.pom.xml <!-- 单元测试--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> </dependency> 2.目录结构 阅读全文
posted @ 2022-10-27 18:24 lwx_R 阅读(22) 评论(0) 推荐(0)
上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 45 下一页