1、get方式:如何为爬虫添加ip代理,设置Request header(请求头) import urllib import urllib.request import urllib.parse import random import time from fake_useragent import ...
分类:
编程语言 时间:
2020-07-17 22:29:49
阅读次数:
192
参考视频:https://www.bilibili.com/video/BV14J4114768?p=198 码云:https://gitee.com/xiaoqiang001 JS部分:HTML、css要求会切图,js基础部分函数、对象和bom以及dom 1.选择器: 后代选择器:.nav a 子 ...
分类:
Web程序 时间:
2020-07-16 21:53:18
阅读次数:
133
问题:The value of the 'Access-Control-Allow-Origin' header in the response must not be the wildcard '*' when the request's credentials mode is 'include' ...
分类:
其他好文 时间:
2020-07-16 21:35:07
阅读次数:
85
一、获取header方法 getheader.py # _*_ coding:utf-8 _*_ import json,requests from Common import readConfig def get_token(): "获取登录token" login=readConfig.Read ...
分类:
编程语言 时间:
2020-07-16 21:08:02
阅读次数:
78
class AppendStatus{ successed = false; constructor(){ } success(listenEvent){ this.successed = true; if(listenEvent){ listenEvent.run(); } } getStatus ...
分类:
其他好文 时间:
2020-07-16 21:01:41
阅读次数:
55
在HotSpot虚拟机里,对象在堆内存中的存储不惧可以划分为三个部分: 对象头(Header)、实例数据(Instance Data)和对齐填充(Padding)。 对象头:包含了Mark Word(一定存在),元数据指针(一定存在),数组size(如果这个对象是个数组对象的话)。 实例数据:类元信 ...
分类:
编程语言 时间:
2020-07-16 12:19:07
阅读次数:
100
mybatis 最佳实战 1. mybatis 使用步骤 环境搭建,依赖导入,配置文件 mybatis generater 生成文件 修改实体类(不可删除,但是可以添加) dao 层添加mapper 多表连接查询的方法; Xml 文件配置SQL 语句,添加映射实体类 2. 依赖导入 <depende ...
分类:
其他好文 时间:
2020-07-16 12:06:48
阅读次数:
100
布局网页时, 有时页面内容太少,无法将内容区域撑开,从而在 footer 下面留下一大块空白。 解决方法 flexbox HTML <body> <header>...</header> <section class="main-content">...</section> <footer>...< ...
分类:
其他好文 时间:
2020-07-16 12:05:56
阅读次数:
89
DRF之jwt使用说明书 jwt介绍 JsonWebToken 如何获取token 先创建一张用户表,要想使用jwt,必须使用django自带的用户表 在models.py中写一个用户类,导入、继承AbstractUser 在Terminal中做数据库迁移,createsuperuser创建超级用户 ...
分类:
其他好文 时间:
2020-07-16 00:22:47
阅读次数:
65
import csv import random class XmlFormat(object): def __init__(self): self.wf = open('data/res_location.xml', 'w', encoding='utf-8') self.add_header() ...
分类:
其他好文 时间:
2020-07-15 23:52:04
阅读次数:
67