一、需求分析 需求 :通过输入关键字对肯德基餐厅信息进行爬取 分析 : 1、如图所示,搜索肯德基网站的首页,会发现最下面的功能栏中有餐厅查询一栏,点击进入会出现图2中的页面,我们可以在搜索栏中输入想要查询信息的城市名称,即可出现该城市的KFC餐厅相关信息 2、比如说,我们输入北京进行搜素,该页面便会 ...
分类:
其他好文 时间:
2021-05-23 22:55:55
阅读次数:
0
You are given a 0-indexed string s that has lowercase English letters in its even indices and digits in its odd indices. There is a function shift(c, ...
分类:
其他好文 时间:
2021-05-04 15:31:41
阅读次数:
0
Prefix and Suffix Search (H) 题目 Design a special dictionary which has some words and allows you to search the words in it by a prefix and a suffix. Im ...
分类:
其他好文 时间:
2021-05-03 12:54:25
阅读次数:
0
自己学习用,待补充! 工程结构: pom: <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLS ...
分类:
其他好文 时间:
2021-05-03 12:04:13
阅读次数:
0
场景 GitLab是一个用于仓库管理系统的开源项目,使用Git作为代码管理工具,并在此基础上搭建起来的web服务。 GitLab和GitHub一样属于第三方基于Git开发的作品,免费且开源(基于MIT协议),与Github类似,可以注册用户,任意提交你的代码,添加SSHKey等等。不同的是,GitL ...
分类:
其他好文 时间:
2021-05-03 11:53:29
阅读次数:
0
前言 有时候调用API时,会出现嵌套json(Json数组)的情况,这时如果使用fastjson就可以很快的进行解析。 例子 { "status": "1", "info": "OK", "infocode": "10000", "count": "1", "geocodes": [ { "form ...
分类:
编程语言 时间:
2021-05-03 11:41:00
阅读次数:
0
DENIED Redis is running in protected mode because protected mode is enabled, no bind address was specified, no authentication password is requested to ...
分类:
其他好文 时间:
2021-04-30 12:41:09
阅读次数:
0
./premetheus -h 命令行常用参数: ?--config.file="prometheus.yml" # 指定配置文件 ?--web.listen-address="0.0.0.0:9090" # 监听地址和端口 ?--log.level=info # 日志级别 ?--alertmana ...
分类:
其他好文 时间:
2021-04-30 12:19:22
阅读次数:
0
压力测试工具 jmeter http stree 硬件测试 mysqlslap 数据库压力测试工具 ####tomcat配置参数优化 #####1.注释8009 <!-- <Connector protocol="AJP/1.3" address="::1" port="8009" redirect ...
分类:
其他好文 时间:
2021-04-30 12:13:59
阅读次数:
0
unique(arr) { const res = new Map(); return arr.filter( (arr) => !res.has(arr.strat_id) && res.set(arr.strat_id, 1) ); }, ...
分类:
编程语言 时间:
2021-04-28 12:04:33
阅读次数:
0