09 2021 档案
摘要:1.idea 专业版 2.maven3.6 3.springboot 创建项目: 1. new project : 下一步: 选取web下一步: 由于新建是没有webapp但是可以自己新建: web.xml <?xml version="1.0" encoding="UTF-8"?> <web-ap
阅读全文
摘要:xmind2Excel 1.0.1 xmind2testcase 1.5.0 xxmind 1.0.1Python -c "from xmind2Excel.main import Main; Main()" 代码实现解析xmind: import xmindparser import pandas
阅读全文
摘要:问题一: 使用mysql --verbose --help | grep my.cnf 命令常看my.cnf文件位置 vim 修改my.cnf [mysqld] Only allow connections from localhost bind-address = 127.0.0.1 发现确实只绑
阅读全文
摘要:第一: brew install mysql 第二: which mysql_conf vim mysql_conf 第三找到此处修改为以下内容: # Create options libs="-L$pkglibdir" libs="$libs -lmysqlclient -lssl -lcrypt
阅读全文
摘要:APScheduler==3.7.0 asgiref==3.3.4 backcall==0.2.0 certifi==2020.12.5 chardet==4.0.0 colorama==0.4.4 coreapi==2.3.3 coreschema==0.0.4 decorator==4.4.2
阅读全文
摘要:链接: https://pan.baidu.com/s/1SD5BmB-9mOs4simWaTPv2Q 提取码: n376 教程: 1.安装pycharm 2.移动jar包到bin目录 3.修改vmoptions 配置 加入参数: 4.重启 5》输入jihuo码:
阅读全文
摘要:下载python3.6.6 https://www.python.org/ftp/python/3.6.6/python-3.6.6-macosx10.9.pkg #. open. ~/.bash_profile 添加如下配置pip 和python3 : alias python="/usr/loc
阅读全文
摘要:# 替换brew.git: $ cd "$(brew --repo)" # 清华大学: $ git remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git # 替换homebrew-core.g
阅读全文
摘要:<template> <a-card title="用户-角色-关联" style="margin-top: 40px;"> <a-tree v-model="checkedKeys" checkable :expanded-keys="expandedKeys" :auto-expand-pare
阅读全文
摘要:这种问题大概率是你的nginx location 设置问题: server { listen 443 ssl; ssl_certificate /etc/nginx/cert/server.crt; ssl_certificate_key /etc/nginx/cert/server.key; se
阅读全文
摘要:如果一直报500 检查: 静态dist文件夹是否被nginx引用到,特别是docker部署进入容器看 root /code/dist; server { listen 443 ssl; ssl_certificate /etc/nginx/cert/server.crt; ssl_certifica
阅读全文
摘要:依赖: npm install vue-codemirror 可能遇到错误 npm install file npm install system 子组件封装 components.vue <template> <codemirror class="code-dec" ref="jsonEditor
阅读全文
摘要:父子组件 https://www.zjh336.cn/?id=1959 兄弟组件通信: Vue兄弟组件通信(VueX) https://www.jianshu.com/p/7c6740293834 1、兄弟之间传递数据需要借助于事件车,通过事件车的方式传递数据 2、创建一个Vue的实例,让各个兄弟共
阅读全文