```
import axios from 'axios'
import store from '../store/index'
axios.defaults.headers.post['Content-Type'] = 'application/x-www-form-urlencoded'
axi... ...
分类:
移动开发 时间:
2019-03-13 20:07:36
阅读次数:
242
介绍 基于GET请求 带参数的GET请求->params 带参数的GET请求->headers 带参数的GET请求->cookies 基于POST请求 发送post请求,模拟浏览器的登录行为 补充 响应Response response属性 编码问题 获取二进制数据 解析json Redirecti ...
分类:
其他好文 时间:
2019-03-12 21:07:41
阅读次数:
193
1 import requests 2 3 url = "https://movie.douban.com/cinema/nowplaying/changsha/" 4 proxy = { 5 'HTTP': '116.209.53.143:9999' 6 } 7 headers = { 8 'Us ...
分类:
其他好文 时间:
2019-03-10 20:31:45
阅读次数:
206
1.爬取百思不得姐段子 1 import requests 2 import re 3 4 5 def parse_url(url): 6 headers = { 7 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) ' 8 'Appl ...
分类:
其他好文 时间:
2019-03-10 20:24:56
阅读次数:
255
http: const http = require("http"); http.createServer((req , res)=>{ req:request 请求 req.url 请求的地址 req.method 请求的方式 req.headers 请求头 req.body 接受get传递过来的 ...
分类:
Web程序 时间:
2019-03-07 16:23:19
阅读次数:
195
import json import requests from requests.exceptions import RequestException import re import time def get_one_page(url): try: headers = { 'User-Agent... ...
分类:
其他好文 时间:
2019-03-04 17:28:53
阅读次数:
133
``` this.axios.get('/api/v1/***', { headers: { 'Authorization': 'Bearer '+localStorage.getItem('token') } }) .then((res) => { console.log(res); }) ... ...
分类:
其他好文 时间:
2019-03-03 09:42:17
阅读次数:
204
graphglibc2.14升级安装步骤0.下载升级所需的rpm包wgetftp://ftp.pbone.net/mirror/archive.fedoraproject.org/fedora/linux/updates/15/x86_64/glibc-headers-2.14.1-6.x86_64.rpmwgetftp://ftp.pbone.net/mirror/archive.fedorap
分类:
其他好文 时间:
2019-03-02 19:58:10
阅读次数:
734
1. 爬虫简介 1.1 概述 网络爬虫(又被称为网页蜘蛛,网络机器人,在FOAF社区中间,更经常的称为网页追逐者),是一种按照一定的规则,自动地抓取万维网信息的程序或者脚本。 1.2 爬虫的价值 在互联网的世界里最有价值的便是数据, 谁掌握了某个行业的行业内的第一手数据, 谁就是该行业的主宰. 掌握 ...
分类:
其他好文 时间:
2019-03-01 18:26:49
阅读次数:
203
REMOTE_ADDR 表示发出请求的远程主机的 IP 地址,remote_addr代表客户端的IP,但它的值不是由客户端提供的,而是服务端根据客户端的ip指定的,当你的浏览器访问某个网站时,假设中间没有任何代理,那么网站的web服务器(Nginx,Apache等)就会把remote_addr设为你 ...
分类:
Web程序 时间:
2019-02-28 18:12:29
阅读次数:
727