(url, data, options = {})
| 182 | } |
| 183 | |
| 184 | post(url, data, options = {}) { |
| 185 | return this.request({ |
| 186 | url, |
| 187 | data, |
| 188 | method: 'POST', |
| 189 | ...options |
| 190 | }) |
| 191 | } |
| 192 | |
| 193 | // #ifndef MP-ALIPAY |
| 194 | put(url, data, options = {}) { |
no test coverage detected