首页
高清壁纸
统计
留言
推荐
Json工具
Search
1
通过iframe嵌套时,被302重定向怎么办?
2,373 阅读
2
关于 MySQL Binlog 权限
1,115 阅读
3
Windows安装PECL
1,025 阅读
4
JS常用监听事件【监听键盘、触控、鼠标、多媒体、打印、剪贴板、表单等事件】
1,017 阅读
5
JS实现Web应用或网站发送浏览器Notification通知
782 阅读
抽奖系统
tony爱编程
收藏分享
经验总结
其它杂类
常用工具
登录
Search
标签搜索
抽奖系统
html+JS
抽奖HTA
js
MySQL
HTA版
源码
hta属性
ecshop
Meta
拖动
javascript
MySQL函数
git提交慢
提交卡
laravel-admin
FSO
redis
文件操作
mysql备份
Tony哥
累计撰写
55
篇文章
累计收到
11
条评论
首页
栏目
抽奖系统
tony爱编程
收藏分享
经验总结
其它杂类
常用工具
页面
高清壁纸
统计
留言
推荐
Json工具
搜索到
1
篇与
的结果
2019-12-19
Laravel 解决跨域和OPTIONS请求问题
建立或现用公共中间件中handle方法改为如下代码public function handle(Request $request, Closure $next) { /** * 用于跨域调用 */ if($request->isMethod('OPTIONS')){ $response = response('',200); }else{ $response = $next($request); } if($referrer = $request->server('HTTP_REFERER') ?? $request->server('HTTP_ORIGIN')){ preg_match('/^(http[s]?:\/\/)?([^\/]+)/i', $referrer, $match); $response->header('Access-Control-Allow-Origin',"{$match[0]}"); $response->header('Access-Control-Allow-Methods', 'POST, GET, OPTIONS, DELETE'); $response->header('Access-Control-Allow-Headers', 'Origin, X-Requested-With, Content-Type, Accept, Authorization, Cookies, Token,content-type'); $response->header('Access-Control-Allow-Credentials', 'true'); $response->header('Cache-Control', 'no-store'); } return $response; }
2019年12月19日
130 阅读
0 评论
0 点赞