前端通过XHR请求后端服务时,出现了下图现象: 根据问题的描述可知,是遇到跨域问题了,为了支持跨域,需要在后端做一下处理,可以这样处理: @Override public void doFilter(ServletRequest servletRequest, ServletResponse ser ...
分类:
数据库 时间:
2020-06-29 20:09:38
阅读次数:
144
一、创建项目 二、更改设置(setting等) 三、编码 1 # -*- coding: utf-8 -*- 2 import scrapy 3 4 5 class RenrenSpider(scrapy.Spider): 6 name = 'renren' 7 allowed_domains = ...
分类:
其他好文 时间:
2020-06-28 18:41:04
阅读次数:
62
is not allowed to connect tothis mmysql server 阿里云上安装的mysql,发现用本地电脑的navicat链接不上。通过了解知道了原因,小二在此写了一篇,省的以后自己在碰到。 错误如图。 mysql -u root -p 登录到mysql中。 [root@ ...
分类:
数据库 时间:
2020-06-26 21:56:10
阅读次数:
64
1、问题现象 Access to XMLHttpRequest at 'http://yyyy' from origin 'http://zzzz' has been blocked by CORS policy: Request header field xxxx is not allowed b ...
分类:
其他好文 时间:
2020-06-24 17:47:18
阅读次数:
66
把起始URL放到redis中去 from scrapy_redis.spiders import RedisSpider # 继承RedisSpider class ChoutiSpider(RedisSpider): name = 'chouti' allowed_domains = ['chou ...
分类:
Web程序 时间:
2020-06-21 19:29:47
阅读次数:
60
./createuser --interactive iomsx;Shall the new role be a superuser? (y/n) nShall the new role be allowed to create databases? (y/n) nShall the new rol ...
分类:
其他好文 时间:
2020-06-21 17:42:25
阅读次数:
78
has been blocked by CORS policy: Request header field x-csrf-token is not allowed by Access-Control-Allow-Headers in preflight response. 因为main.js有“se ...
分类:
其他好文 时间:
2020-06-20 13:56:53
阅读次数:
45
1.可以通过settings/dev.py的ALLOWED_HOSTS,设置允许访问 # 设置哪些客户端可以通过地址访问到后端 ALLOWED_HOSTS = [ 'api.luffycity.cn', ] 2.安装跨域模块(一下代码修改都是在settings.dev下进行的) pip instal ...
分类:
编程语言 时间:
2020-06-20 11:36:32
阅读次数:
76
先说说这个错误,其实就是我们的MySQL不允许远程登录,所以远程登录失败了,解决方法如下: 在装有MySQL的机器上登录MySQL mysql -u root -p密码 执行use mysql; 执行update user set host = '%' where user = 'root'; 执行 ...
分类:
数据库 时间:
2020-06-20 10:58:46
阅读次数:
58
新安装Ubuntu20服务版, 安装mysql8 后 使用以下语句更改密码 update mysql.user set authentication_string='password' where user='root'; 出现show databases,不能使用。 最后无法只能重新安装mysql ...
分类:
数据库 时间:
2020-06-19 23:19:41
阅读次数:
205