前后端分离场景后端需要配置跨域,否则浏览器那端跨域请求会报错。 跨域要配置的: app.all('*', (req, res, next) => { // google需要配置,否则报错cors error res.setHeader('Access-Control-Allow-Credential ...
分类:
其他好文 时间:
2021-04-19 14:12:06
阅读次数:
0
sudo vi打开 /etc/mysql/mysql.conf.d/mysqld.cnf常用vim命令i 修改文本Ese 推出修改:wq 保存退出:q! 强制退出修改bind_ip为ubuntu ipifconfig -a查看ubuntu ip sudo ufw allow 3306 打开3306端 ...
分类:
数据库 时间:
2021-04-16 12:06:44
阅读次数:
0
Docker部署PostGres docker run -d --name postgres --restart always -e POSTGRES_USER='postgres' -e POSTGRES_PASSWORD='123456' -e ALLOW_IP_RANGE=0.0.0.0/0 ...
分类:
其他好文 时间:
2021-04-14 12:43:56
阅读次数:
0
/** * 跨域请求设置 */ function checkAllowOrigin() { //从配置文件获取允许源域名 $allowOrigin = explode(',', env('app.allow_origin')); if (in_array('*', $allowOrigin)) { ...
分类:
Web程序 时间:
2021-04-14 12:05:15
阅读次数:
0
问题1:tsx文件找不到 根目录新建一个tsconfig.json { "compilerOptions": { "jsx": "react", "outDir": "./dist", "module": "es6", "target": "es5", "allowJs": true, "allow ...
分类:
其他好文 时间:
2021-04-07 11:32:12
阅读次数:
0
异常断电关机等特殊情况所导致数据库损坏,出现数据库质疑的问题,使用如下办法进行解决: use master go sp_configure 'allow updates', 1 reconfigure with override go alter DATABASE 质疑数据库名 SET EMERGE ...
分类:
数据库 时间:
2021-03-18 14:08:32
阅读次数:
0
一、需求:希望使用脚本启动虚拟环境下的jupyter notebook 二、问题: 直接使用如下脚本(jupyternotebook.sh): conda activate pythonnohup jupyter notebook --no-browser --ip=0.0.0.0 --allow- ...
分类:
其他好文 时间:
2021-03-11 10:50:01
阅读次数:
0
Step 1 — Installing Apache and Updating the Firewall Adjust the Firewall to Allow Web Traffic sudo apt update sudo apt upgrade sudo apt install apache ...
分类:
系统相关 时间:
2021-03-06 14:52:16
阅读次数:
0
跨域常见问题: 1.发布到IIS上后跨域问题 解决方法 修改web.config文件 <system.webServer> <httpProtocol> <customHeaders> <add name="Access-Control-Allow-Methods" value="GET,POST, ...
分类:
Web程序 时间:
2021-02-22 12:27:38
阅读次数:
0
网页请求报错: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource. ...
分类:
数据库 时间:
2021-02-20 12:31:09
阅读次数:
0