laravel中限制接口使用频率-throttle中间件

Route::any(‘store’,’ApiController@store’)->middleware(‘throttle:5’);

需要注意这是对每分钟的限制

猜你喜欢

转载自blog.csdn.net/liukai6/article/details/80430602