报错:UnboundLocalError: local variable 't' referenced before assignment 在 Python 中,如果一个函数使用了和全局变量相同的名字且改变了该变量的值,那么该变量就会变成局部变量, 那么就会造成在函数中我们没有进行定义就引用了,所以 ...
分类:
其他好文 时间:
2020-07-24 16:35:06
阅读次数:
116
前言 最近又抽掉出来写一个 Python 项目, 框架使用 Flask , 又有些新心得, 比如本篇所说, 想要将某个蓝图加上统一的权限控制, 比如 admin 蓝图全部有一个统一的拦截器判断是否有权限操作, 这里记录两个方法, 有利有弊 正文 使用 before_request 钩子 http:/ ...
分类:
其他好文 时间:
2020-07-23 23:27:28
阅读次数:
155
public static void main(String[] args) { //获取当前时间 LocalDateTime nowTime= LocalDateTime.now(); //自定义时间 LocalDateTime endTime = LocalDateTime.of(2017, 1 ...
分类:
其他好文 时间:
2020-07-23 23:12:43
阅读次数:
71
jQuery 添加元素append() prepend() after() before() 1,jQuery append() 方法 jQuery append() 方法在被选元素的结尾插入内容。 实例$("p").append("Some appended text."); 2,jQuery p ...
分类:
移动开发 时间:
2020-07-23 22:35:43
阅读次数:
88
流程 客户端发起请求 –> 进到wsgi(模型) –> 中间件(request_process) –> 路由(urls.py) –> 中间件(view_process) –> view(视图操作 -> orm操作 -> mysql ) –> 中间件(process_response before_t ...
分类:
其他好文 时间:
2020-07-23 16:28:46
阅读次数:
86
mybatis的基础安装使用 1.jar包 :相关jar包的导入,包含mysql-connector-java-3.1.12-bin.jar mybatis-3.2.3.jar commons-logging-1.1.1.jar 等。 2.po类 :此处以学生类为例 public class Stu ...
分类:
其他好文 时间:
2020-07-21 21:47:46
阅读次数:
51
我们在web.xml中配置servlet的时候会有个属性<load-on-startup></load-on-startup>,这里主要记一下它的作用,源码在后续记得好好看一下。 The load-on-startup element indicates that this servlet shou ...
分类:
Web程序 时间:
2020-07-20 10:48:39
阅读次数:
83
在Admintool中配置时,测试连接是通的,但在directorweb页面显示是不通的状态,如下图:在MOS上查到,CannotGetDirectorToRecognizeGoldenGateInstances--EOFfromGGSCI-unexpectedendofstream.Closingconnection(DocID1568098.1)APPLIESTO:ManagementPack
分类:
Web程序 时间:
2020-07-19 11:29:07
阅读次数:
86
Given a singly linked list, you are supposed to rearrange its elements so that all the negative values appear before all of the non-negatives, and all ...
分类:
其他好文 时间:
2020-07-19 00:50:18
阅读次数:
85
仅罗列了一些常用基础配置,更多配置请到官网查看 https://www.elastic.co/guide/en/logstash/current logstash.yml配置文件 # Node identity #节点名称,默认主机名 node.name: test # Data path #数据存 ...
分类:
其他好文 时间:
2020-07-18 22:04:24
阅读次数:
88