码迷,mamicode.com
首页 >  
搜索关键字:allow    ( 1838个结果
spring boot配置跨域
最近通过vue cli写了个前端,想通过axios来访问后端接口,结果就报错: No 'Access-Control-Allow-Origin' header is present on the requested resource 跨域可以通过前端解决,也可通过nginx代理解决,也可以通过后端解 ...
分类:编程语言   时间:2020-04-03 16:26:19    阅读次数:65
DVWA-全等级文件包含(File Inclusion)
1、什么是文件包含(File Inciusion):一种代码处理方法,文件包含是指应用程序加载的文件(本地/远程)可以由用户提交的数据控制,从而导致攻击者控制恶意文件在服务器上执行。如当服务器开启allow_url_include选项时,就可以通过php的某些函数如include(),require ...
分类:其他好文   时间:2020-04-02 22:40:41    阅读次数:133
跨域请求Access to XMLHttpRequest at 'http://localhost/index.php/api/user/login'
ajax访问后台接口遇到报错 解决方法: 在被请求的php文件中加入请求头部 header('Access-Control-Allow-Origin: *'); 例如: 我的接口是用laravel框架写的,所有在laravel的index.php中加入请求头部 后台返回的数据 ...
分类:数据库   时间:2020-04-01 22:08:16    阅读次数:2335
IDEA上传Git项目报错:Push rejected: Push to origin/master
错误信息:Pushrejected:Pushtoorigin/masterwasrejected解决办法:1.选择你要上传代码的文件夹,鼠标右键gitBashHere2.输入下面两行命令gitpulloriginmaster–allow-unrelated-histories--把远程仓库中的内容pull到本地工作目录gitpush-uoriginmaster-f--在pull下来的项目中做修改,
分类:Web程序   时间:2020-03-31 12:20:50    阅读次数:69
idea中git报错
1. Push to origin/master was rejected 解决:git pull origin master --allow-unrelated-histories 2. Can't Update No tracked branch configured for branch ma ...
分类:其他好文   时间:2020-03-30 23:27:03    阅读次数:62
php & vue 跨域问题解决方案
方案1:在服务端配置指定的域名 (注:在vue中无需设置;'Access-Control-Allow-Origin'如果为*则依然会报错,必须得是指定的域名) /** * 设置能访问的域名 * * @var array */ static public $originarr = [ 'http:// ...
分类:Web程序   时间:2020-03-30 15:49:20    阅读次数:187
springboot配置工程为开发模式
一、配置idea a、Ctrl+Alt+S => Compiler => Build project automatically; b、Ctrl+Alt+Shift+/ => Registry... => compiler.automake.allow.when.app.running; 二、配置p ...
分类:编程语言   时间:2020-03-29 10:31:09    阅读次数:94
Bat小脚本
一、防火墙相关配置“高级安全Windows防火墙”都可以使用:netshadvfirewallfirewall。dir=in|out,入站/出站规则action=allow|block|bypass,设定这个规则是允许还是阻断或者是跳过program=<programpath>],为某应用程序设定规则[service=<serviceshortname>|any],为某系统
分类:其他好文   时间:2020-03-27 23:31:49    阅读次数:162
spring,springmv,springboot解决跨域问题
SpringMvc: <mvc:cors> <mvc:mapping path="/**" allowed-origins="*" allow-credentials="true" max-age="1800" allowed-methods="GET,POST,PUT,DELETE,PATCH,O ...
分类:编程语言   时间:2020-03-27 23:25:07    阅读次数:147
idea提交代码时报错Git Pull Failed: refusing to merge unrelated histories
原因: 本地仓库和远程仓库实际上是独立的两个仓库,如果是先创建远程库,再提交本地的仓库到远程库,就会容易出现这个问题。一般都是远程仓库添加readMe.md 或者其他新增的文件导致。 解决方法:在项目目录下执行 git pull origin master --allow-unrelated-his ...
分类:其他好文   时间:2020-03-27 10:59:53    阅读次数:73
1838条   上一页 1 ... 10 11 12 13 14 ... 184 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!