thinkphp6.0 接口频繁限制
1.安装composer扩展composer require topthink/think-throttle2.在app/middleware.php设置return [\think\middleware\Throttle::class,];3.在 config/throttle.php 配置选项:// 中间件配置return [ // 缓存键前缀,防止键值与其他应用冲突 'prefix' => 'throttle_', // 缓存的...