470 1 分钟

# echarts 折线图动态 series 作图 tooltip 显示异常 我这边遇到的是 echarts 折线图动态添加 series 的时候,发现 tooltip 显示不对,有好多 undefined 出现。 这块确实是一个前端组件在使用上的问题,前端使用了 echarts 做图,而 echarts 有个比较奇怪(可能也是比较正常的)的地方就是一旦这个 div 实例化后,后续再次 init 实例化这个 div 其实可能是一个假的实例化操作,也就是后续的渲染可能是无效的,...
1.2k 1 分钟

背景:OS 是 ubuntu18,python 版本是 Python3.6.x,执行 scriptvirtualenv -p python venv创建虚拟环境时报 script❯ virtualenv -p python venvTraceback (most recent call last): File "/usr/lib/python3/dist-packages/pkg_resources/__init__.py", line 2458, in resolve return functools.reduce(getattr, self.attrs,...
720 1 分钟

# MYSQL:ERROR 1146 (42S02): Table ‘xxx‘ doesn‘t exist 一种情况 原因:linux 下表名大小写问题造成 MySQL 在 Linux 下数据库名、表名、列名、别名大小写规则是这样的: 数据库名与表名是严格区分大小写的; 表的别名是严格区分大小写的; 列名与列的别名在所有的情况下均是忽略大小写的; 变量名也是严格区分大小写的 show global variables like '%lower_case%'; +------------------------+-------+| Variable_name | Value...
302 1 分钟

1.问题记录执行pip install -r requirements.txt时报下述error:error: can't find Rust compilerThis package requires Rust >=1.41.0.Failed building wheel for cryptographyFailed cleaning build dir for cryptography2.问题解决(1)安装rust编译器: https://www.rust-lang.org/tools/install(2)升级pip后重新执行pip install $...
2.6k 2 分钟

1.概念InfluxDB里存储的数据被称为时间序列数据,InfluxDB存储方式跟传统关系型数据库不同的是:传统关系型数据库通过数据库+表+字段组织数据,InfluxDB通过指标、标签、字段组织数据,时间戳是默认的索引列,标签跟字段其实就相当于关系型数据库中的字段,只不过标签会被索引,而字段不会。(1)database:数据库(2)measurement:度量,相当于table;例如:cpu(3)tags:标签,相当于field,会被索引;例如:host(4)field:字段,不会被索引,例如:cpu_load 2.安装sudo yum install -y influxdb 3.启动sudo...
2.5k 2 分钟

使用git自带的action脚本实现CI/CD 先理解下CI/CD概念(CD有两种意思)CI:continuous integration,持续集成,属于开发人员的自动化流程,是一种软件工程流程, 是将所有软件工程师对于软件的工作副本持续集成到共享主线(mainline)的一种举措。CD:continuous delivery,持续交付,是一种软件工程手法,让软件产品的产出过程在一个短 周期内完成,以保证软件可以稳定、持续的保持在随时可以释出的状况。CD:continuous deployment,持续部署,是一种软件工程方法,意指在软件开发流程中,以自...
507 1 分钟

ref:https://github.com/PyMySQL/mysqlclient#linux Note that this is a basic step. I can not support complete step for build for all environment. If you can see some error, you should fix it by yourself, or ask for support in some user forum. Don't file a issue on the issue tracker.You may need to...
586 1 分钟

1. 比较隐蔽的一个问题,问题代码如下 from app.settings import settings # the name settings refers to the blueprint imported above@settings.route('/a')def this_works(): ... # the name settings refers to the blueprint imported above@settings.route('/')def settings(): ... # the name settings now refers...