- 博客(61)
- 收藏
- 关注
原创 服务器部署环境(docker安装Mysql + Redis + MongoDB)
#Linux docker 部署mysql、redis、mongoDB
2024-07-24 09:25:00 1625
原创 SSL证书(https)遇到的问题及解决方法
需求场景: 通过一个二级域名前端页面请求后端接口(后端接口由一个二级域名反向代理)二级域名dns 解析后 同样要部署SSL证书。nginx 配置相关的证书。如果只是DNS 解析二级域名到 ip 端口,则会出现安全性问题。
2024-07-23 11:35:40 291
原创 uniapp引入 uview( HBuilder 和 npm 两种安装方式) #按需引入
uniapp引入 uview( HBuilder 和 npm 两种安装方式) #按需引入。
2024-07-12 15:18:44 696
原创 微信小程序-开发篇-页面生命周期 #onShow #onLoad
微信小程序加载的生命周期,不同的生命周期函数可以用于执行不同的操作,例如初始化数据、发送网络请求、更新页面等。onLaunch:小程序初始化时触发,全局只触发一次。onHide:小程序从前台进入后台时触发。
2024-07-12 08:45:58 705
原创 #Vue 3 + ts + antd table表格的使用(嵌套 子表格版)
【代码】#Vue 3 + ts + antd table表格的使用(嵌套 子表格版)
2024-07-05 08:25:42 492
原创 UVeiw 组件的使用(更多自定义案例和解决方案),Vue3 +ts 版本 #Selected组件 #Vue 3 # Ts
UVeiw 组件的使用(更多自定义案例和解决方案),Vue3 +ts 版本 #Select组件 #Vue 3 # Ts。
2024-01-23 15:07:37 612 1
原创 Vue 3 + Ts 钩子函数(hooks)的用法,以<script setup lang=“ts“/>语法糖形式 #reactive #ref
Vue 3 + Ts 钩子函数(hooks)的用法,以语法糖形式 #reactive #ref
2024-01-23 14:44:21 824
原创 Vue 3 + Ts 生命周期钩子函数的使用 #onShow() #onMounted() #onBeforeMount
Vue 3 + Ts 关于生命周期钩子函数的使用,Demo 版 #onShow() #onMounted()
2024-01-22 11:25:53 3842 1
原创 Java 一个数组集合List<People> 赋值给另一个数组集合List<NewPeople> ,两个数组集合属性部分一致。
Java 一个数组集合List 赋值给另一个数组集合List ,两个数组集合属性部分一致。#java #List #集合
2024-01-22 10:37:55 1003
原创 Vue 3 开发中遇到的问题及解决方案(fix bug)
vite v3.2.4 building for development...'hasInjectionContext' is not exported by node_modules/pinia/node_modules/vue-demi/lib/index.mjs, imported by node_modules/pinia/dist/pinia.mjsat ../node_modules/pinia/dist/pinia.mjs:6:9 4: * @license MIT 5: */
2023-12-13 18:45:07 503 2
原创 nginx:[warn]server name“http://182.*.*“ has suspicious symbols in/www/server/nginx/conf/nginx.conf:7
通过宝塔安装nginx 后无法启动(在宝塔软件商店安装的)配置文件导致的
2023-11-28 15:04:53 384
原创 React + hooks + Ts 实现将后端响应的文件流(如Pdf)输出到浏览器下载
使用useState钩子来保存PDF文件的URL。当用户点击下载按钮时,我们使用axios发送GET请求,并将响应类型设置为blob。然后,我们使用Blob对象将响应数据转换为二进制数据,并使用URL.createObjectURL()方法将其转换为URL。最后,我们将URL保存到state中,并使用a标签的click()方法触发下载。
2023-11-15 18:19:23 1266
原创 React 18 + Hooks +Ts 开发中遇到的问题及解决方案!
Could not find a declaration file for module 'js-export-excel'
2023-11-13 10:37:02 523
原创 记录开发中遇到关于MySQL的一些问题-MySQL版
最近使用的这个数据库图形软件,没习惯,仔细检查一下发现 id 没有设为主键、id 没默认为非空、id没有设为自增策略;看网上其他解决方案:ID没有设为主键、id不为空、id 自增。把该表的id 设为主键、id 默认为非空、id设为自增策略。
2023-10-03 17:31:29 332
原创 关于JPA +SpringBoot 遇到的一些问题及解决方法
org.springframework.dao.InvalidDataAccessResourceUsageException: Named parameter not bound : id; nested exception is org.hibernate.QueryException: Named parameter not bound : id (已解决)
2023-09-22 21:13:40 752
原创 org.hibernate.MappingException: Could not determine type for: java.util.List, at table: xxxx,解决
Could not determine type for: java.util.List, at table: c_tree, for columns: [org.hibernate.mapping.Column(children)] #JPA #@Transient
2023-09-19 19:53:18 474
原创 mac环境安装多个node版本(可切换)
mac m1pro版(前段时间刚换的),环境安装的都是最新的。node 18.17.1 前端跑的是react 18 的项目(antD), 又跑了一个相对环境配置比较低的项目,然后启动不起来了;决定还是和之前安装多个版本,尝试安装nvm 无果后,通过采用安装sudo npm install n -g。分析控制台报错,推断是node版本的问题;
2023-09-18 14:44:32 1050
原创 react-antD 下拉框组件使用出现的问题(antd版本问题)-menus
ERRORReact.Children.only expected to receive a single React element child. at Object.onlyChild [as only] (http://localhost:2028/static/js/bundle.js:237997:15)
2023-09-14 20:00:26 444
原创 java集合 list转map一些常用的方式(Stream流,,,)
这片文章是用来整理开发中经常用到的一些集合之间的转换方法(stream流 List 转Map),作为笔记,提高开发效率,有需要的小伙伴可以参考一下,这片文章会慢慢补充完整。
2023-09-12 16:20:55 9932
原创 React + AntD 点击详情查看相关信息,madal弹框闪退(Objects are not valid as a React child (found: object with)
页面渲染失败,闪退;Objects are not valid as a React child (found: object with keys {createdAt, name, size, type, url}). If you meant to render a collection of children, use an array instead.
2023-09-11 20:02:27 262
原创 Bug日记之 List<Object>强转 Map<Integer,Object>类型
查询操作日志:从MongDB中查询数据。List 强转Map
2023-09-05 12:03:53 159
原创 Bug日记:Cannot find module ‘@/page/organization/Organization‘ or its corresponding type declarations
Cannot find module '@/page/organization/Organization' or its corresponding type declarations. 修改routers 后报错
2023-06-27 15:34:30 128
原创 Bugs日记--修改和新增异常(Field ‘id‘ doesn‘t have a default value)
Field 'id' doesn't have a default value
2023-06-15 20:04:20 125
签订用户协议 vue 3 H5移动端(Vant 组件库)
2024-04-13
react 18 +Ts antD tree树型菜单加入到table中
2023-09-20
TA创建的收藏夹 TA关注的收藏夹
TA关注的人