From 2d44298b05704add2d50992435e8e8a84cd384c2 Mon Sep 17 00:00:00 2001 From: "Morning.Chen" Date: Mon, 22 Jan 2024 13:56:52 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E4=BF=AE=E6=94=B9export=E6=96=87=E6=A1=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/README.md b/README.md index 6314266..fa48855 100644 --- a/README.md +++ b/README.md @@ -339,6 +339,28 @@ updateMode: 更新方式 "success":true } ``` +使用方式: + +1、使用tableId调用接口,创建导出任务,接口返回 +{ +"errorCode": "61311022", +"errorMsg": "table exporting,try later..." +} +; + +2、轮询使用tableId请求接口,若导出未完成,接口返回 +{ +"errorCode": "61311022", +"errorMsg": "table exporting,try later..." +} +直到导出完成后,接口会正常返回: +{ +"success": true, +"code": "200", +"message": "success", +"data": "下载地址", +} + 注: