C and C++ allow various types of operators. By now, you should be familiar with the basic binary operators +, -, *, / and the boolean operators <, >, ...
分类:
其他好文 时间:
2020-05-19 12:14:52
阅读次数:
62
一、简介 1、robot协议(爬虫协议):这个协议告诉引擎哪些页面可以抓取,哪些不可以 -User-agent:爬虫引擎 -allow:允许robot访问的URL -disallow:禁止访问的URL 2、爬虫约束:过快/频繁的网络爬虫会对服务器产生巨大的压力,网站可能封锁你的IP,或者采取法律行动 ...
分类:
其他好文 时间:
2020-05-18 20:43:39
阅读次数:
74
我认为的跨域: 浏览器从一个域名的网页去请求另一个域名的资源时,域名、端口、协议任一不同,都是跨域 跨域相关的报错: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'null' ...
分类:
其他好文 时间:
2020-05-18 16:55:18
阅读次数:
60
var svgCaptcha = require('svg-captcha'); session.code = [] router.get('/bb', async (ctx, next) => { ctx.set('Access-Control-Allow-Origin', '*'); var c ...
分类:
其他好文 时间:
2020-05-18 16:14:36
阅读次数:
47
修改配置文件 httpd.conf Header set Access-Control-Allow-Origin * //允许所有ip访问,请根据实际需要指定ip Header set Access-Control-Allow-Credentials true Header set Access-C ...
分类:
Web程序 时间:
2020-05-18 12:07:36
阅读次数:
79
8.5 Compile-Time if8.5 编译期if Partial specialization, SFINAE, and std::enable_if allow us to enable or disable templates as a whole. C++17 additionally ...
分类:
其他好文 时间:
2020-05-16 18:51:10
阅读次数:
57
1、前言 最近在项目中,调用Eureka REST接口时,出现了CORS跨越问题(Cross-origin resource sharing),在此与大家进行分享,避免多走些弯路。 项目前端(http://localhost:9000)通过Ajax方式调用Eureka REST 接口(http:// ...
分类:
数据库 时间:
2020-05-16 16:47:26
阅读次数:
84
禁止PC3通过80端口访问web服务 Router(config) access list 100 deny tcp 192.168.3.0 0.0.0.255 192.168.5.2 0.0.0.0 eq 80 Router(config) access list 100 permit ip an ...
分类:
Web程序 时间:
2020-05-14 22:41:32
阅读次数:
203
来源:https://segmentfault.com/a/1190000012550346 当出现403跨域错误的时候 No 'Access-Control-Allow-Origin' header is present on the requested resource,需要给Nginx服务器配 ...
分类:
数据库 时间:
2020-05-11 23:20:01
阅读次数:
79
1、volume #启动一个容器 -v定义volume的名字以及volume的目录-e是环境变量 docker run -d -v mysql:/var/lib/mysql --name mysql1 -e MYSQL_ALLOW_EMPTY_PASSWORD=true mysql #进入容器 do ...
分类:
其他好文 时间:
2020-05-10 19:19:35
阅读次数:
57