Results 6 comments of ErikaEmma

@Eaken 不是爬虫,我浏览器随意打开一个100页200 OK的,点击下一页,400了

非常感谢,我是MIUI14,一直不成功,直到看到您的文章,我打开了root权限并开启了/data/local/tmp使用,tik tok打开了

请问在RouteGenerator里var_dump($regexes, $routeMap);发现两个array的坐标分别是0,1和2,3是什么用意?

且第二个Route被自动变成/about/([A-Za-z]+)()了,请问多出来的()是做什么用的?

测试发现,route数量n,多余的()数量为n-1

RouteGenerator第27行: $regexes[] = $route->route . str_repeat('()', $numGroups - $numVariables); 换为 $regexes[] = str_replace('()', '', $route->route . str_repeat('()', $numGroups - $numVariables)); 正常了