摘要: 内容概要: 1、安装及基本使用 2、起始请求定制 3、解析器/选择器 4、cookie及请求头处理 5、pipeline持久化 6、去重规则 7、深度和优先级 8、中间件 9、定制命令 10、信号 11、scrapy-redis https://www.cnblogs.com/wupeiqi/art 阅读全文
posted @ 2019-05-12 21:11 不可思议的猪 阅读(310) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/wupeiqi/articles/6283017.html 一、requests模块 requests.post( url = "xxx", header = {xxx:xxx}, cookies = {}, params = {} #这是加在url后 阅读全文
posted @ 2019-05-12 21:07 不可思议的猪 阅读(218) 评论(0) 推荐(0) 编辑
摘要: 内容概要: 1、引擎 2、索引 3、视图 4、触发器 5、函数 6、存储过程 7、优化方案 一、引擎 https://www.cnblogs.com/Eva-J/articles/9682063.html Mysql有两种引擎:InnorDB和MyISAM 1、MyISAM:不支持事务和外键,只可以 阅读全文
posted @ 2019-05-12 16:15 不可思议的猪 阅读(227) 评论(0) 推荐(0) 编辑
摘要: http://jquery.cuishifeng.cn/ 一、选择器 jquery选择器选择出的是jquery对象,加上索引后是DOM对象 $("*") // 选择所有元素 $("div") // 标签选择 $("#id") // id选择 $(".classname") // 类选择 $("div 阅读全文
posted @ 2019-05-12 16:12 不可思议的猪 阅读(284) 评论(0) 推荐(0) 编辑
摘要: 第一部分:CSS 一、选择器 1、普通选择器 标签选择器: a id选择器: #a 类选择器: .a 属性选择器: a[name="xxx"]组合选择器:后代选择器: p a子选择器: p>a相邻兄弟选择器: p+a普通兄弟选择器: p-a 2、伪类:用来查找标签的某些状态(状态选择器) a:lin 阅读全文
posted @ 2019-05-12 15:49 不可思议的猪 阅读(217) 评论(0) 推荐(0) 编辑