From e8d21ef54fc3fe8071edda7badacd52719bf1c77 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E5=AE=97=E6=A5=A0?= Date: Thu, 12 Oct 2023 17:50:34 +0800 Subject: [PATCH] 1 --- platformapi/mtwmapi/comment.go | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/platformapi/mtwmapi/comment.go b/platformapi/mtwmapi/comment.go index d534a57f..f6c4539b 100644 --- a/platformapi/mtwmapi/comment.go +++ b/platformapi/mtwmapi/comment.go @@ -38,7 +38,6 @@ type OrderComment struct { // 根据门店id批量查询评价信息(新版) // http://developer.waimai.meituan.com/home/docDetail/191 func (a *API) CommentQuery(poiCode string, startDateStr, endDateStr string, offset, limit int, replyStatus int) (commentList []*OrderComment, err error) { - nowApi := a // 使用该变量缓存当前API的token,由于使用地址,导致其他变量修改了当前变量的token数据较大时出现异常 params := map[string]interface{}{ KeyAppPoiCode: poiCode, "start_time": startDateStr, @@ -61,14 +60,14 @@ func (a *API) CommentQuery(poiCode string, startDateStr, endDateStr string, offs } params["pageoffset"] = offset params["pagesize"] = limit - result, err := nowApi.AccessAPI("comment/query", true, params) + result, err := a.AccessAPI("comment/query", true, params) if err != nil { - return nil, err + break } var batchCommentList []*OrderComment err = utils.Map2StructByJson(result, &batchCommentList, false) if err != nil { - return nil, err + break } for _, comment := range batchCommentList { if comment.CommentLables != "" {