Error msg: 问题: setting中的log使用的DEFAULT_LOG_FMT参数出错 解决: 检查参数是否写错, 或者多项少项 ...
分类:
其他好文 时间:
2018-10-12 18:25:58
阅读次数:
135
//新版本谷歌没有window.showModalDialog,创建一个window.openif(window.showModalDialog == undefined){ window.showModalDialog = function(url,mixedVar,features){ wind ...
if(navigator.userAgent.indexOf("Chrome") >0 ){var winOption = "height="+height+",width="+width+",top=50,left=50,toolbar=no,location=no,directories=no, ...
#异常处理:是错误发生的信号,一旦程序出错,就会产生一个异常,应用程序未处理该异常,异常便会抛出,程序随之终止。
#常见异常类型:
#1.语法错误
#2.逻辑错误 IndexError
#3.不存在的类,报:AttributeError
class foo:
pass
foo.x
#4.不存在的key,报KeyError
k={‘a‘:1}
k[‘y‘]
#5.如果0做除数,报ZeroDivisionError
#6.不可迭代类型,报TypeError
for i in 3:
pass
#7.不能把字符串转化数字,报ValueError
age=input(‘>>:‘)
age=int(age) #int转化为数字
#处理异常try
#格式
try: #检测下面异常
出错的代码
except 异常的类型: #捕捉上面的代码的异常类型,相同执行pass
pass
try:
l=[]
print(l[1])
print(‘11111‘)
except IndexError:
pass
#as
分类:
其他好文 时间:
2018-10-11 22:39:31
阅读次数:
188
jsp页面的html代码显示不出来,提示Uncaught SyntaxError: Unexpected token < <input type="hidden" name="flowBranchId" value="${flowBranch.flowUserId}"/> 上面的flowUserId ...
分类:
Web程序 时间:
2018-10-11 19:02:09
阅读次数:
444
一、一次性更新多条记录 二、一次性新增多条记录 三、判断表中是否存在某条记录 注意:SQL语句中所有的占位符都要用%s,不然会报错“MySQLdb TypeError: not all arguments converted during string formatting” ...
分类:
数据库 时间:
2018-10-11 12:56:03
阅读次数:
165
arr = [[a],[b]] set(arr) output: Traceback (most recent call last): File "<stdin>", line 1, in <module>TypeError: unhashable type: 'list' arr =[1,2] s ...
分类:
编程语言 时间:
2018-10-10 23:48:39
阅读次数:
530
1、 alert = driver.switch_to.alert() TypeError: 'Alert' object is not callable 对象不能用函数形式调用,就是不能callable。 此类错误一般是由于内部函数被用作变量名时发生 ...
分类:
编程语言 时间:
2018-10-10 10:45:31
阅读次数:
126
一、前言 php7目前(截止2018-09-17),最新的稳定版本是7.2.10(http://php.net/downloads.php上可查看版本信息),目前还有不少项目是用5.6甚至更早的版本。相比于php5.x的版本,php7有不少新的改进,性能方面也是有不少提升。下面来详细讲下。 二、新特 ...
分类:
Web程序 时间:
2018-10-09 00:38:13
阅读次数:
285
目录1.引子2.源码解析2.1.@Async 2.2 @EnableAsync2.3.AOP Advisor切面初始化:(AsyncAnnotationBeanPostProcessor 》setBeanFactory())2.4.AOP 生成代理类AopProxy(AsyncAnnotationB ...
分类:
编程语言 时间:
2018-10-08 15:02:40
阅读次数:
248