* send success data
(data = '', message = '')
| 101 | * send success data |
| 102 | */ |
| 103 | success(data = '', message = '') { |
| 104 | const obj = { |
| 105 | [this.config('errnoField')]: 0, |
| 106 | [this.config('errmsgField')]: message, |
| 107 | data |
| 108 | }; |
| 109 | this.type = this.config('jsonContentType'); |
| 110 | this.body = obj; |
| 111 | return false; |
| 112 | }, |
| 113 | /** |
| 114 | * send fail data |
| 115 | */ |