 InteractsWithRoute.php文件第91行在路径中只替换了/,在windows系统中文件分隔符是\,因而导致无法在windows上使用注解路由 解决方案: `str_replace('/', '.', $filename)` 替换为 `str_replace(DIRECTORY_SEPARATOR, '.', $filename)`