We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d415e17 commit 9d83ecbCopy full SHA for 9d83ecb
LaravelReadme.md
@@ -8,6 +8,12 @@ $ composer require zhenmu/support -vvv
8
9
## 使用
10
11
+1. 通过 `php artisan make:controller` 控制器生成后,继承同目录下的 `Controller` 基类.
12
+2. 编写接口时可通过 `$this->success($data = [], $err_code = 200, $messsage = 'success');` 返回正确数据给接口.
13
+3. 编写接口时可通过 `$this->fail($messsage = '', $err_code = 400);` 返回错误信息给接口.
14
+4. 在 `app/Exceptions/Handler.php` 的 `register` 函数中, 注册 `ResponseTrait` 的 `renderableHandle`, 示例见下方错误处理.
15
+
16
17
### 控制器
18
19
```php
0 commit comments