<script>function getQueryVariable(variable) { var query = window.location.search.substring(1); var vars = query.split("&"); for (var i=0;i<vars.length ...
分类:
Web程序 时间:
2021-02-27 13:14:25
阅读次数:
0
1.windows下调试时需要将hadoop.dll文件放到C:\Windows\System32下,网上很多说改源码的,其实这样也是ok的,不然会报权限错误 Exception in thread "main" java.lang.UnsatisfiedLinkError: org.apache. ...
直接使用window.scroll or window.scrollTo设置滚动时,在iOS下没有滚动动画效果可以安装smoothscroll-polyfill包来解决这个问题 安装完再直接使用window.scroll or window.scrollTo即可 git地址:https://gith ...
分类:
移动开发 时间:
2021-02-26 13:10:02
阅读次数:
0
The expensive shops in a famous arcade near Piccadilly were just opening. At this time of the morning, the arcade was almost empty. Mr. Taylor, the ow ...
分类:
其他好文 时间:
2021-02-26 13:05:25
阅读次数:
0
例如 _sopen_s 在磁盘空间不够的时候, 宏 errno 就会返回 ENOSPC(28) MSDN 文档时只提到以下错误码 errno valueCondition EACCES The given path is a directory, or the file is read-only, ...
from selenium import webdriver import time import json wb = webdriver.Chrome() wb.get('https://www.baidu.com') wb.maximize_window() time.sleep(3) # 登录 ...
分类:
编程语言 时间:
2021-02-26 12:56:21
阅读次数:
0
背景:测试服/正式服的字段类型为varchart(200) 页面该字段录入超过200个字符保存。测试服报错“Data too long for column”;正式服自动截取200个字符保存,没有报错。 原因:mysql的my.ini文件中的sql_mode配置不同,通过 select @@GLOB ...
分类:
数据库 时间:
2021-02-25 12:16:01
阅读次数:
0
执行环境 执行环境:定义变量或函数有权访问的其他数据。 每个执行环境对应与之关联的变量对象。 变量对象:保存环境中定义的所有变量和函数。 全局执行环境:最外围的执行环境,在web浏览器中,全局执行环境为window对象。 全局变量对象:保存所有window对象下的属性和方法。 执行环境的销毁 某个执 ...
分类:
Web程序 时间:
2021-02-25 11:56:38
阅读次数:
0
错误原因:这里就是说,分组这一列里面,包含了非字符串的内容,比如数字。因为 .str.contains 的使用就要求这个字段必须是字符串,不能掺杂数字的。 解决方案: # 包含对应关系的所有行 data_ych_pid = self.database[self.database[column_nam ...
分类:
其他好文 时间:
2021-02-24 13:25:38
阅读次数:
0
原文地址 developer.mozilla.org window.requestAnimationFrame() 告诉浏览器——你希望执行一个动画,并且要求浏览器在下次重绘之前调用指定的回调函数更新动画。该方法需要传入一个回调函数作为参数,该回调函数会在浏览器下一次重绘之前执行 注意:若你想在浏览 ...