一:设置变量log_bin_trust_function_creators的方式 -- 设置为1,此时才可以使用 CONTAINS SQL,MODIFIES SQL DATA set GLOBAL log_bin_trust_function_creators=1; delimiter $$ cre ...
分类:
其他好文 时间:
2020-12-23 12:26:09
阅读次数:
0
上次搞完后调试发现,不管ant执行接口的结果是是否为失败,在Jenkins看来执行ant命令这一步始终是成功的。因此配置了失败时发邮件、企业微信通知后,压根就收不到通知,因为根本不会显示失败。 因此要考虑解决,ant执行的接口有失败时,怎么让Jenkins整个流程构建失败,从而达到失败通知的效果。 ...
分类:
微信 时间:
2020-12-23 12:15:52
阅读次数:
0
通常我们在做项目的时候都会用到大佬们发布到npm上的组件,简单的命令下载即可使用今天我们向大佬学习,走一波大佬的路 简单的目录结构 1.下载相关依赖 通过 npm init 命令,创建package文件 { "name": "vue-component-button", "version": "0. ...
分类:
其他好文 时间:
2020-12-22 12:21:22
阅读次数:
0
问题描述:接口返回tree型数据,前端需要展示三个下拉框,每一子集选项由父级确定。 数据结构:build -> floor -> room。 通过监听build选中计算出响应的floorList,同理计算出roomList。 实现问题:build切换时,this.from.floorId = nul ...
分类:
其他好文 时间:
2020-12-21 11:41:03
阅读次数:
0
在mac和windows上相同的python脚本,跑出了不同的效果。 就是我在main里面声明的变数,多进程执行,在windows无法访问,但mac却可以。 被卡了好久,有点困惑,这里记录一下现象~~原因不知道...... #!/usr/bin/python #-*- coding: utf-8 d ...
分类:
编程语言 时间:
2020-12-19 13:24:20
阅读次数:
1
在局部修全局的:global 在局部修改嵌套的:nonlocal nonlocal代码示范 # 在局部作用域内去修改嵌套作用域内的变量# 当我们在局部作用域内要修改嵌套作用域内的变量时,需要使用nonlocal去声明 def fun01(): name = "张子恒" def fun02(): # ...
分类:
其他好文 时间:
2020-12-19 13:16:19
阅读次数:
2
pip修改为国内源: windows环境: 1. windows不存在该目录,在当前用户目录下创建pip.ini 2. pip.ini路径为:C:\Users\bin\pip\pip.ini 3. pip.ini文件内容为: [global] index-url = http://mirrors.a ...
分类:
其他好文 时间:
2020-12-19 13:01:06
阅读次数:
2
搭建vue的开发环境: https://cn.vuejs.org/v2/guide/installation.html 1、必须要安装nodejs 2、搭建vue的开发环境 ,安装vue的脚手架工具 官方命令行工具 npm install --global vue-cli / cnpm instal ...
分类:
其他好文 时间:
2020-12-18 12:37:03
阅读次数:
2
idea中springboot热部署(无需重启项目) 1.在pom.xml文件中导入依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <o ...
分类:
编程语言 时间:
2020-12-17 12:53:11
阅读次数:
1
目录Recapinput dim, hidden dimSimpleRNNCellSingle layer RNN CellMulti-Layers RNNRNN Layer Recap input dim, hidden dim from tensorflow.keras import layer ...
分类:
其他好文 时间:
2020-12-17 12:24:16
阅读次数:
2