var url = 'https://gitbook.cn/gitchat/geekbooks?tag=JavaScript&name=pwwu&age=24'; var temp1 = url.split('?'); var pram = temp1[1]; var keyValue = pram ...
分类:
Web程序 时间:
2021-05-24 01:41:19
阅读次数:
0
数据结构二叉树的基本操作设计#include <conio.h> #include <stdio.h> #include <stdlib.h> #include <math.h> #define MAXLEN 100 #define NLAYER 4 typedef struct BiTNode / ...
分类:
编程语言 时间:
2021-05-24 01:40:53
阅读次数:
0
一个简单的解决方案是:不管是服务端还是客户端,在web.config下 的system.serviceModel标签下方增加一个没有设置名字的Binding默认配置就行了。 具体配置如下: <system.serviceModel> <bindings> <basicHttpBinding> <bi ...
分类:
其他好文 时间:
2021-05-24 01:40:24
阅读次数:
0
m_pPasswordLineEdit->setEchoMode(QLineEdit::EchoMode::Password); QLineEdit{lineedit-password-character:42;} 参考:https://bbs.csdn.net/topics/392513644?p ...
分类:
其他好文 时间:
2021-05-24 01:40:09
阅读次数:
0
1. 定义:用于在数组的末端添加一个或多个元素,并返回添加新元素后的数组长度。注意,该方法会改变原数组 2. 代码使用push方法,往数组中添加了四个成员 1 var arr = []; 2 console.log(arr.push(1)); //1 3 console.log(arr.push(' ...
分类:
其他好文 时间:
2021-05-24 01:39:52
阅读次数:
0
自己代码中的配置信息 //windows身份验证使用的 <appSettings> <add key="ConnctionStr" value="server=1.1.0.1;database=1;integrated security=true"/> </appSettings> //sql se ...
分类:
数据库 时间:
2021-05-24 01:39:34
阅读次数:
0
# join() # 语法: # 'sep'.join(可迭代对象) # 说明: # sep:sep是分隔符 # 功能: # 将可迭代对象拼接成一个字符串# 实例s = '110223'newS = '-'.join(s)print(newS) #1-1-0-2-2-3li = ['c','h',' ...
分类:
其他好文 时间:
2021-05-24 01:39:07
阅读次数:
0
https://leetcode-cn.com/problems/find-minimum-time-to-finish-all-jobs/ 不会做,蹭个积分就走~ class Solution { /** * 最小的 工人最大用时 */ private int minId = Integer.MA ...
分类:
其他好文 时间:
2021-05-24 01:38:37
阅读次数:
0
1.使用虚拟目录是,后端中的重定向等该如何处理 string path = filterContext.HttpContext.Request.ApplicationPath; if (path == "/") { path = ""; } filterContext.Result = new Re ...
分类:
Web程序 时间:
2021-05-24 01:38:02
阅读次数:
0
原因是最近xlrd更新到了2.0.1版本,只支持.xls文件。所以x1 = xlrd.open_workbook("data.xlsx")会报错。 可以安装旧版xlrd,在cmd中运行: 建议直接卸载新版本,下载xlrd旧版本 pip uninstall xlrd pip install xlrd= ...
分类:
其他好文 时间:
2021-05-24 01:37:35
阅读次数:
0
hdfs dfsadmin -report hadoop fsck -locations ...
分类:
其他好文 时间:
2021-05-24 01:37:15
阅读次数:
0
转至:https://blog.csdn.net/qq_38161040/article/details/108274161 用户多次密码输入错误达到一定值就会被锁定。 -- 用户锁定方法 alter user 数据库名 account lock; -- 用户解锁方法 alter user 数据库名 ...
分类:
数据库 时间:
2021-05-24 01:36:58
阅读次数:
0
docker inspect --format='{{.Name}} - {{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' $(docker ps -q) ...
分类:
其他好文 时间:
2021-05-24 01:36:40
阅读次数:
0
创建FTP共享文件夹遇到这个问题,记录一下解决方案: 在开始按钮(win图标)上右键→计算机管理 服务和应用程序→服务→Server服务上右击,选择属性,并将启动类型设置为自动,然后单击应用并确定,或者重启一下。 还是这个窗口→共享文件夹→新建共享→使用创建共享文件夹向导创建文件夹 即可。 ...
分类:
其他好文 时间:
2021-05-24 01:36:23
阅读次数:
0
crontab(定时任务) 1.当linux发行的版本有service这个命令时候(service 是服务。必须root用户才可以支持) service crond status 查看定时任务运行状态命令 service crond start 启动定时任务命令 service crond stop ...
分类:
系统相关 时间:
2021-05-24 01:36:04
阅读次数:
0
去除文件或视频名前缀: 比如这个前缀太长:0001.中国网络电视台-《紧急公关》 第1集 将视频放入同一个文件夹du中,全选,按F2,修改第一个zhi文件名即可。 一、将所有需要修改的视zhuan频放在shu同一个文件夹中,这里可以新建一个文件夹,将视频移入其中。 二、打开这个文件夹,将里面的所有视 ...
分类:
其他好文 时间:
2021-05-24 01:35:51
阅读次数:
0
image.png 访问控制 白名单 若存在/etc/cron.allow,只有该文件内的用户才能使用crontab 黑名单 若存在/etc/deny,该文件内的用户不能使用crontab 优先级 /etc/cron.allow > /etc/cron.deny 常用选项 -e: 编辑任务 -l: ...
分类:
系统相关 时间:
2021-05-24 01:35:31
阅读次数:
0