appDataExportPath 返回 db 数据导出 URL(返原始字节)。
(appID string)
| 203 | |
| 204 | // appDataExportPath 返回 db 数据导出 URL(返原始字节)。 |
| 205 | func appDataExportPath(appID string) string { |
| 206 | return fmt.Sprintf("%s/apps/%s/db/data_export", apiBasePath, validate.EncodePathSegment(appID)) |
| 207 | } |
| 208 | |
| 209 | // appTableRecordsPath 返回数据表记录列表 URL(复用 GetAppTableRecordList,其 total 即符合条件的记录总数)。 |
| 210 | func appTableRecordsPath(appID, table string) string { |
no test coverage detected