1.先在behavior文件夹下创建CORS类
class CORS
{
public function appInit(){
header("Access-Control-Allow-Origin:*");
header("Access-Control-Allow-Methods:GET, POST, OPTIONS, DELETE");
header("Access-Control-Allow-Headers:X-Requested-With,X_Requested_With,uid,token,*");
if(request()->isOptions()){
exit();
}
}
}
2.在app目录tag.php中修改
return [
// 应用初始化
'app_init' => [
'app\\index\\behavior\\CORS'
],
// 应用开始
'app_begin' => [],
// 模块初始化
'module_init' => [],
// 操作开始执行
'action_begin' => [],
// 视图内容过滤
'view_filter' => [],
// 日志写入
'log_write' => [],
// 应用结束
'app_end' => [],
];