Update Route.php

新增路由模块中支持'OPTIONS'类型,该类型为跨域请求api时,ajax自动发送OPTIONS类型的请求报500错误问题
This commit is contained in:
xiaobo.sun
2016-02-26 10:21:40 +08:00
parent b7c6c497ab
commit ea42277be7

View File

@@ -20,6 +20,7 @@ class Route
'PUT' => [],
'DELETE' => [],
'HEAD' => [],
'OPTIONS'=> [],
'*' => [],
];