mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-23 11:58:41 +08:00
24 lines
387 B
PHP
24 lines
387 B
PHP
<?php
|
|
|
|
namespace App\Http\Html5\Controllers;
|
|
|
|
use App\Traits\Response as ResponseTrait;
|
|
|
|
/**
|
|
* @RoutePrefix("/html5")
|
|
*/
|
|
class PublicController extends \Phalcon\Mvc\Controller
|
|
{
|
|
|
|
use ResponseTrait;
|
|
|
|
/**
|
|
* @Get("/throttle", name="html5.throttle")
|
|
*/
|
|
public function throttleAction()
|
|
{
|
|
return $this->jsonError(['msg' => '请求过于频繁']);
|
|
}
|
|
|
|
}
|