当前位置:网站首页>Collection of error records (write down when you encounter them)
Collection of error records (write down when you encounter them)
2022-08-05 06:32:00 【monkeyhlj】
A collection of bug records(note it down)
1、解决React 的<img >src使用requireThe way the picture does not show up,展示的是[object Module]的问题:https://www.cnblogs.com/qianxiaoniantianxin/p/14789826.html
2、cssSet height to browser100%高度:div { height:100vh; }说明:vh是viewport height,单位是%,如果前面不是100而是1,represents the height of the window1%.All browsers are said to support it.
在antd项目中使用iconfont:https://www.jianshu.com/p/1b92c56a8879
3、reactGlobally monitor routing changes:https://cloud.tencent.com/developer/article/1345078
4、解决react+node后端跨域问题,nodeEven if it is set, it is invalid,可配置react中的src/setProxy.js文件:https://www.cnblogs.com/fightjianxian/p/12377882.html
5、结合antdBe highly adaptive:Content的style有个min-height属性https://blog.csdn.net/qq_38735649/article/details/103610635
6、When exposing configurationnpm run eject报错:https://www.jianshu.com/p/b7a7f15ae968
7、ESLint对a标签hrefProperty warning workaround:https://blog.csdn.net/weixin_34029680/article/details/91434946
8、matplotlib的scatterCustomize point size when drawing:https://www.pianshen.com/article/7907281704/
9、github提交问题,8月13Password authentication solutions will no longer be supported in the future:SSH免密与Token登录配置:https://cloud.tencent.com/developer/article/1861466
10、pip install tenserflow错误:https://segmentfault.com/a/1190000020368776
11、JavaScript中for in与for of的区别:https://www.cnblogs.com/zhilu/p/13856912.html
12、排列熵算法:https://www.pythonheidong.com/blog/article/724325/6c6fea46344c87fd568e/
13、PyEMD:https://github.com/laszukdawid/PyEMD
https://blog.csdn.net/weixin_43086050/article/details/108423996
https://blog.csdn.net/m0_57011532/article/details/115532756?utm_medium=distribute.pc_relevant.none-task-blog-2defaultBlogCommendFromBaidudefault-5.control&depth_1-utm_source=distribute.pc_relevant.none-task-blog-2defaultBlogCommendFromBaidudefault-5.control
14、ssm整合时出现xml在buildis not packaged and an error occurscom/mchange/v2/c3p0/impl/NewProxyPreparedStatement.isClosed()Z is abstract时,修改依赖版本:
<!--C3P0-->
<dependency>
<groupId>com.mchange</groupId>
<artifactId>c3p0</artifactId>
<version>0.9.5.2</version>
</dependency>
且加上:这样就能找到java文件夹下的xml文件了.
<resources>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.xml</include>
</includes>
</resource>
<resource>
<directory>src/main/resources</directory>
<includes>
<include>*.xml</include>
<include>*.properties</include>
</includes>
</resource>
</resources>
15、解决SpringBoot没有favicon.ico报错:https://blog.csdn.net/weixin_47896156/article/details/111095908
16、springcloudalibaba中使用**@LoadBalanced注解进行负载均衡,报错No instances available for localhost**,见:https://blog.csdn.net/majinan3456/article/details/99352894
17、vue引入scss文件或者less文件,报错 this.getOptions is not a function:https://blog.csdn.net/weixin_44953689/article/details/115618451
18、iview关于menu结合router问题:https://blog.csdn.net/weixin_30530939/article/details/99096500
19、https://blog.csdn.net/weixin_40929147/article/details/84586656
20、prophet安装问题:https://www.jianshu.com/p/0c06ad7bccaa?appinstall=0
21、.npy文件的打开方式:
import numpy as np
test = np.load(r'./datasets/pred.npy')
print(test)
22、TreeMapRelated custom sorting:https://www.cnblogs.com/xubiao/p/5803976.html
23、anacondaCreate a virtual environment and joinjupyter的kernel中:https://blog.csdn.net/qq_44184049/article/details/121911689
24、centos的ens在ifconfig时无IP地址显示:https://blog.csdn.net/qq_23689053/article/details/110204329
25、虚拟机网络配置:https://blog.csdn.net/qq_41311691/article/details/124377318
边栏推荐
- 微信小程序页面跳转传参
- 深度 Zabbix 使用指南——来自惨绿少年
- Call the TensorFlow Objection Detection API for object detection and save the detection results locally
- Wireshark packet capture and common filtering methods
- link 和@improt的区别
- Technology Sharing Miscellaneous Technologies
- This is indeed the best article on microservice architecture I have read!
- el-progress implements different colors of the progress bar
- Growth: IT Operations Trends Report
- 浏览器存储WebStorage
猜你喜欢
随机推荐
千亿IT运维市场,产品要凭实力说话
监控系统的内卷,有什么讲究?
Passing parameters in multiple threads
LeetCode练习及自己理解记录(1)
Take you in-depth understanding of cookies
Transport layer protocol (TCP 3-way handshake)
By solving these three problems, the operation and maintenance efficiency will exceed 90% of the hospital
TCP/IP four-layer model
Dry!Teach you to use industrial raspberries pie combining CODESYS configuration EtherCAT master station
单臂路由实验和三层交换机实验
实力卷王LinkSLA,实现运维工程师快乐摸鱼
I/O performance and reliability
sql server duplicate values are counted after
增长:IT运维发展趋势报告
User and user group management, file permission management
有哪些事情是你做了运维才知道的?
传输层协议
Browser Storage for H5
wc、grep、tar、vi/vim
Mina的长连接和短连接









