From fa25bfd78431abb1facc2ed91644d8598901bf3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8D=92?= Date: Wed, 13 Aug 2025 16:02:21 +0800 Subject: [PATCH] 1 --- .idea/.gitignore | 8 + .idea/inspectionProfiles/Project_Default.xml | 17 + .../inspectionProfiles/profiles_settings.xml | 6 + .idea/jdpl.iml | 10 + .idea/misc.xml | 7 + .idea/modules.xml | 8 + .idea/vcs.xml | 6 + jd/jd.py | 262 ++ jd/response.txt | 2737 +++++++++++++++++ jd/tb.py | 198 ++ jd/test.py | 144 + 11 files changed, 3403 insertions(+) create mode 100644 .idea/.gitignore create mode 100644 .idea/inspectionProfiles/Project_Default.xml create mode 100644 .idea/inspectionProfiles/profiles_settings.xml create mode 100644 .idea/jdpl.iml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml create mode 100644 jd/jd.py create mode 100644 jd/response.txt create mode 100644 jd/tb.py create mode 100644 jd/test.py diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..35410ca --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# 默认忽略的文件 +/shelf/ +/workspace.xml +# 基于编辑器的 HTTP 客户端请求 +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 0000000..38db808 --- /dev/null +++ b/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,17 @@ + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 0000000..105ce2d --- /dev/null +++ b/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/.idea/jdpl.iml b/.idea/jdpl.iml new file mode 100644 index 0000000..2c80e12 --- /dev/null +++ b/.idea/jdpl.iml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..9614c26 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,7 @@ + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..5dbb0ca --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/jd/jd.py b/jd/jd.py new file mode 100644 index 0000000..ae80d77 --- /dev/null +++ b/jd/jd.py @@ -0,0 +1,262 @@ +import time +import random +import json +import threading + +from flask import Flask, request, jsonify +from DrissionPage import ChromiumPage, ChromiumOptions +from sqlalchemy import create_engine, Column, Integer, String, Text, DateTime +from sqlalchemy.ext.declarative import declarative_base +from sqlalchemy.orm import sessionmaker + +# =================== 配置部分 =================== +# 浏览器路径(请根据本地实际路径修改) +CHROME_PATH = r'C:\Program Files\Google\Chrome\Application\chrome.exe' + +# MySQL 配置 +db_config = { + "host": "192.168.8.88", + "port": 3306, + "user": "root", + "password": "mysql_7sjTXH", # 修改为你的密码 + "database": "jd" +} + +# 初始化 Flask 应用 +app = Flask(__name__) +# 初始化锁 +fetch_lock = threading.Lock() + + +# 初始化数据库连接 +db_url = f"mysql+pymysql://{db_config['user']}:{db_config['password']}@{db_config['host']}:{db_config['port']}/{db_config['database']}?charset=utf8mb4" +engine = create_engine(db_url, echo=False) +Session = sessionmaker(bind=engine) + +Base = declarative_base() + + +# 定义评论模型 +class Comment(Base): + __tablename__ = 'comments' + id = Column(Integer, primary_key=True) + product_id = Column(String(50), nullable=False) + user_name = Column(String(100)) + comment_text = Column(Text) + comment_id = Column(String(100)) + picture_urls = Column(Text) # 存储 JSON 字符串 + created_at = Column(DateTime, default=time.strftime('%Y-%m-%d %H:%M:%S')) + comment_date = Column(DateTime, default=time.strftime('%Y-%m-%d %H:%M:%S')) + + +# 创建表(如果不存在) +Base.metadata.create_all(engine) +# =================== 核心爬虫函数 =================== +# 全局浏览器实例(只初始化一次) +global_page = None + + +def get_global_browser(): + global global_page + if global_page is None: + options = ChromiumOptions() + options.set_browser_path(CHROME_PATH) + global_page = ChromiumPage(options) + return global_page + + +def fetch_jd_comments(product_id): + page = get_global_browser() # 使用全局浏览器 + try: + # 打开商品页面 + page.get(f'https://item.jd.com/{product_id}.html#crumb-wrap') + time.sleep(random.uniform(5, 8)) + + # 向下滚动主页面 + page.scroll.down(150) + time.sleep(random.uniform(3, 5)) + + # 点击“买家赞不绝口” + element1 = page.ele('xpath=//div[contains(text(), "买家赞不绝口")]') + if element1: + element1.click() + time.sleep(random.uniform(3, 5)) + else: + element1 = page.ele('xpath=//div[contains(text(), "好评率")]') + if element1: + element1.click() + time.sleep(random.uniform(3, 5)) + # 点击“当前商品” + element2 = page.ele('xpath=//div[contains(text(), "当前商品")]') + if element2: + element2.click() + time.sleep(random.uniform(3, 5)) + + # 定位弹窗区域 + popup = page.ele('xpath=//*[@id="rateList"]/div/div[3]') + if not popup: + return [] + + # 点击“视频” + element3 = page.ele('xpath=//div[contains(text(), "视频")]') + if element3: + element3.click() + time.sleep(random.uniform(3, 5)) + + # 监听请求 + page.listen.start('https://api.m.jd.com/client.action') + + max_retries = 10 # 最多尝试 5 次无新数据 + retry_count = 0 + new_comments = [] # 存储最终的新评论 + seen_ids = set() # 已处理过的 comment_id + + while retry_count < max_retries and len(new_comments) < 10: + scroll_amount = random.randint(10000, 100000) + popup.scroll.down(scroll_amount) + print(f"弹窗向下滚动了 {scroll_amount} 像素") + + time.sleep(random.uniform(3, 5)) + + resp = page.listen.wait(timeout=5) + if resp and 'getCommentListPage' in resp.request.postData: + json_data = resp.response.body + if 'result' in json_data and 'floors' in json_data['result']: + comment_floor = json_data['result']['floors'][2] + if 'data' in comment_floor and isinstance(comment_floor['data'], list): + batch_comments = comment_floor['data'] + + # 提取这批评论中的新评论 + fresh_comments = [] + for comment in batch_comments: + comment_info = comment.get('commentInfo', {}) + comment_id = comment_info.get('commentId', '') + comment_score = comment_info.get('commentScore', '') # 获取评分字段 + + if not comment_id: + continue + + # 只保留五星好评 + if comment_score != '5': + print(f"跳过非五星评论:{comment_id},评分为 {comment_score}") + continue + + # 如果该评论已存在数据库或本次已收集,则跳过 + exists_in_db = False + if comment_id in seen_ids: + exists_in_db = True + else: + session = Session() + exists_in_db = session.query(Comment).filter_by(comment_id=comment_id).first() is not None + session.close() + + if exists_in_db: + print(f"评论已存在:{comment_id}") + continue + + seen_ids.add(comment_id) + fresh_comments.append(comment) + + if fresh_comments: + print(f"本次获取到 {len(fresh_comments)} 条新评论") + new_comments.extend(fresh_comments) + retry_count = 0 # 有新数据,重置重试计数器 + else: + print("本次无新评论,继续滚动...") + retry_count += 1 + else: + print("未找到有效的评论列表") + retry_count += 1 + else: + print("返回数据结构异常") + retry_count += 1 + else: + print("未捕获到新的评论数据,继续滚动...") + retry_count += 1 + + print(f"共抓取到 {len(new_comments)} 条新评论(最多需要10条)") + return new_comments[:10] # 只保留前10条 + + except Exception as e: + print("发生错误:", e) + return [] + + + +# =================== 提取评论并保存到数据库 =================== +def save_comments_to_db(product_id, comments): + session = Session() + try: + for comment in comments: + comment_info = comment.get('commentInfo', {}) + comment_id = comment_info.get('commentId', '') + + # 如果 comment_id 为空,跳过这条评论 + if not comment_id: + print("跳过无 comment_id 的评论") + continue + + # 检查是否已存在该评论 + exists = session.query(Comment).filter_by(comment_id=comment_id).first() + if exists: + print(f"评论已存在:{comment_id}") + continue + + # 提取其他字段 + user_name = comment_info.get('userNickName', '匿名用户') + comment_text = comment_info.get('commentData', '无评论内容') + product_id = comment_info.get('productId', product_id) + picture_list = comment_info.get('pictureInfoList', []) + comment_date = comment_info.get('commentDate', '') + picture_urls = [pic.get('largePicURL') for pic in picture_list if pic.get('largePicURL')] + + new_comment = Comment( + product_id=product_id, + user_name=user_name, + comment_text=comment_text, + comment_id=comment_id, + picture_urls=json.dumps(picture_urls, ensure_ascii=False), + comment_date=comment_date + ) + session.add(new_comment) + + session.commit() + except Exception as e: + session.rollback() + print("保存失败:", e) + finally: + session.close() + + +# =================== Flask API 接口 =================== +@app.route('/fetch_comments', methods=['POST']) +def fetch_comments(): + product_id = request.args.get('product_id') + if not product_id: + return jsonify({"error": "缺少 product_id"}), -200 + + try: + with fetch_lock: # 加锁,防止并发调用 + comments = fetch_jd_comments(product_id) + if not comments: + return jsonify({"message": "未获取到评论数据"}), -200 + + save_comments_to_db(product_id, comments) + + return jsonify({ + "message": f"成功保存 {len(comments)} 条评论", + "product_id": product_id + }), 200 + + except Exception as e: + return jsonify({"error": str(e)}), -200 + + +# =================== 启动服务 =================== +if __name__ == '__main__': + try: + app.run(host='0.0.0.0', port=5000, debug=True) + finally: + if 'global_page' in globals() and global_page: + global_page.quit() + print("浏览器已关闭") diff --git a/jd/response.txt b/jd/response.txt new file mode 100644 index 0000000..9f4f99a --- /dev/null +++ b/jd/response.txt @@ -0,0 +1,2737 @@ +mtopjsonppcdetail18({ + "api": "mtop.taobao.rate.detaillist.get", + "data": { + "abBucketName": "default_buckets#-99", + "abCode": "default_buckets", + "allowInteract": "true", + "canReport": "true", + "configMap": { + "card_version": "old", + "show_comments": "false" + }, + "extraInfo": { + "enableFilterCurItem": "false", + "showImprNewItem": "false", + "tabMergeImpr": "false", + "newUserTag": "true", + "newDetail": "false", + "newInteraction": "false", + "showBadTab": "true", + "recomComment": "true", + "hideBadCount": "true", + "optimizeCopy": "true", + "newList": "false", + "itemCateId": "350511" + }, + "feedAllCount": "300", + "feedAllCountFuzzy": "300+", + "feedAppendCount": "54", + "feedAppendCountFuzzy": "54", + "feedMediaCount": "100", + "feedMediaCountFuzzy": "100+", + "feedPicCount": "100", + "feedPicCountFuzzy": "100+", + "feedStoreCount": "0", + "feedVideoCount": "21", + "feedVideoCountFuzzy": "21", + "foldCount": "117", + "fuzzyRateCount": "300+", + "hasNext": "true", + "imprNewItemVOS": [], + "inviteText": "", + "latestSort": "true", + "range": "300", + "rateList": [ + { + "addCartUrl": "https://sku.taobao.com/index.htm?itemId=907297542617&bottomMode=ADDCART&asyncApiType=normalBuy&skuId=5767407060270", + "allowComment": "true", + "allowInteract": "true", + "allowNote": "false", + "allowReportReview": "true", + "allowReportUser": "false", + "allowShieldReview": "false", + "allowShieldUser": "false", + "annoy": "1", + "auctionNumId": "907297542617", + "auctionTitle": "新品海尔抽油烟机大嘴C61Pro变频大吸力顶侧双吸家用厨房吸油烟机", + "copy": "false", + "createTime": "6月23日", + "createTimeInterval": "1周前", + "creditLevel": "11", + "decision": { + "decisionNode": [ + { + "highLight": "false", + "title": "安装很快" + }, + { + "highLight": "false", + "title": "吸油很好" + } + ], + "title": "商品性能及服务" + }, + "extraInfoMap": { + "userGrade": "5", + "report_url": "https://market.m.taobao.com/app/msd/buyer-aqcenter/report.html?bizSource=taobao&from=ItemComment&subjectType=ITEM_RATE&subjectId=1275862436489#/index" + }, + "feedPicList": [ + { + "cover": "false", + "extraMap": { + "matchExpression": "false" + }, + "fileId": "1603208488021300132", + "height": "1920", + "status": "1", + "thumbnail": "//img.alicdn.com/imgextra/i1/4611686018427383696/O1CN017xC2gj1uQi8TsRwzE_!!4611686018427383696-0-rate.jpg", + "width": "1080" + } + ], + "feedPicPathList": [ + "//img.alicdn.com/imgextra/i1/4611686018427383696/O1CN017xC2gj1uQi8TsRwzE_!!4611686018427383696-0-rate.jpg" + ], + "feedback": "是否易清洗:是 安装师傅特别专业!准时上门,干活麻利,安装过程中仔细调整位置,带齐工具,对机型和安装流程非常熟悉,打孔、固定、调试一气呵成,还主动检查了排烟管密封性。必须给五星好评。 声音大小:合适 配送准时:快 ", + "feedbackDate": "2025年6月23日", + "formalBlackUser": "false", + "goldUser": "false", + "hasDetail": "true", + "headFrameUrl": "", + "headPicUrl": "//img.alicdn.com/imgextra/i4/O1CN01GbZNxl26Vzotrjqli_!!6000000007668-2-tps-160-160.png", + "id": "1275862436489", + "interactInfo": { + "alreadyDislike": "false", + "alreadyLike": "false", + "commentCount": "0", + "enableComment": "true", + "enableLike": "true", + "enableShare": "true", + "likeCount": "0", + "readCount": "11" + }, + "own": "false", + "rateType": "1", + "reduceUserNick": "a**0", + "repeatBusiness": "true", + "reply": "感谢亲对海尔的支持与信赖,您简短的几句肯定胜过无数的赞美,您的满意就是对我们最大的支持!我们也会经常做一些优惠活动,请老朋友们多多关注哦!期待您的再次光临!祝您生活愉快!【海尔官方旗舰店】加入会员领取更多专享福利呦~", + "share": { + "detailShareUrl": "https://web.m.taobao.com/app/mtb-guang/showcase/transfer?target_page=rate_detail&target_h5=https%3A%2F%2Fh5.m.taobao.com%2Fuser_comment%2Fcomment_detail.html&rateId=1275862436489", + "detailUrl": "//h5.m.taobao.com/tnode/index.htm?tnode=page_ratedetail%40ugc%3fpangesture%3dpullrightexit%26navbarHide%3dtrue%26immersive%3dtrue&rateId=1275862436489&headPic=https%3A%2F%2Fimg.alicdn.com%2Fimgextra%2Fi4%2FO1CN01GbZNxl26Vzotrjqli_%21%216000000007668-2-tps-160-160.png", + "shareCover": "//img.alicdn.com/imgextra/i1/4611686018427383696/O1CN017xC2gj1uQi8TsRwzE_!!4611686018427383696-0-rate.jpg", + "shareSupport": "true", + "shareURL": "//h5.m.taobao.com/user_comment/comment_detail.html?rateId=1275862436489&sellerId=MMmIyvC*HP0RIMHgbvGQbOH8WM8leOFcWPC8SOHkWPFxT&isEncode=true" + }, + "skuId": "5767407060270", + "skuMap": { + "颜色分类": "28m³/min 钢琴黑" + }, + "skuValueStr": "28m³/min 钢琴黑", + "skuVids": "32888575647", + "structTagEndSize": "0", + "structTagList": [ + { + "id": "1", + "title": "是否易清洗", + "content": "是\n安装师傅特别专业!准时上门,干活麻利,安装过程中仔细调整位置,带齐工具,对机型和安装流程非常熟悉,打孔、固定、调试一气呵成,还主动检查了排烟管密封性。必须给五星好评。\n" + }, + { + "id": "2", + "title": "声音大小", + "content": "合适" + }, + { + "id": "3", + "title": "配送准时", + "content": "快" + } + ], + "topRate": "0", + "userId": "0", + "userIndexURL": "", + "userMark": "OYJRbmPSjjyncfa1KnDE4FvLgY+i2uRxo9UYk92FngA=", + "userNick": "a**0", + "userStar": "9", + "userStarPic": "https://img.alicdn.com/imgextra/i3/O1CN01PIYxrZ22FGrmiDphN_!!6000000007090-2-tps-92-45.png", + "userTagList": [ + { + "extraInfo": { + "level": "11" + }, + "tagCode": "credit", + "tagDesc": "信用等级", + "tagIconHeight": "27", + "tagIconPic": "https://img.alicdn.com/imgextra/i3/O1CN01PIYxrZ22FGrmiDphN_!!6000000007090-2-tps-92-45.png", + "tagIconWidth": "53" + } + ] + }, + { + "addCartUrl": "https://sku.taobao.com/index.htm?itemId=907297542617&bottomMode=ADDCART&asyncApiType=normalBuy&skuId=5767407060270", + "allowComment": "true", + "allowInteract": "true", + "allowNote": "true", + "allowReportReview": "true", + "allowReportUser": "false", + "allowShieldReview": "false", + "allowShieldUser": "false", + "annoy": "0", + "appendedFeed": { + "appendFeedPicList": [ + { + "cover": "false", + "extraMap": { + "matchExpression": "false" + }, + "fileId": "1167008491859188770", + "height": "4000", + "status": "1", + "thumbnail": "//img.alicdn.com/imgextra/i3/4611686018427384518/O1CN01aO5OEl1OCuUw3ZTow_!!4611686018427384518-0-rate.jpg", + "width": "3000" + }, + { + "cover": "false", + "extraMap": { + "matchExpression": "false" + }, + "fileId": "1167008491879690692", + "height": "4160", + "status": "1", + "thumbnail": "//img.alicdn.com/imgextra/i3/4611686018427384518/O1CN012LHdC91OCuUw4xVJ6_!!4611686018427384518-0-rate.jpg", + "width": "3120" + }, + { + "cover": "false", + "extraMap": { + "matchExpression": "false" + }, + "fileId": "1167008491859764007", + "height": "4160", + "status": "1", + "thumbnail": "//img.alicdn.com/imgextra/i1/4611686018427384518/O1CN01GEQGDH1OCuUw3btSx_!!4611686018427384518-0-rate.jpg", + "width": "3120" + }, + { + "cover": "false", + "extraMap": { + "matchExpression": "false" + }, + "fileId": "1167008491027288907", + "height": "1920", + "status": "1", + "thumbnail": "//img.alicdn.com/imgextra/i3/4611686018427384518/O1CN01EJoME71OCuUv9GufD_!!4611686018427384518-0-rate.jpg", + "width": "1080" + } + ], + "appendFeedPicPathList": [ + "//img.alicdn.com/imgextra/i3/4611686018427384518/O1CN01aO5OEl1OCuUw3ZTow_!!4611686018427384518-0-rate.jpg", + "//img.alicdn.com/imgextra/i3/4611686018427384518/O1CN012LHdC91OCuUw4xVJ6_!!4611686018427384518-0-rate.jpg", + "//img.alicdn.com/imgextra/i1/4611686018427384518/O1CN01GEQGDH1OCuUw3btSx_!!4611686018427384518-0-rate.jpg", + "//img.alicdn.com/imgextra/i3/4611686018427384518/O1CN01EJoME71OCuUv9GufD_!!4611686018427384518-0-rate.jpg" + ], + "appendedFeedback": "发货速度很快,物流配送也很准时,而且配送安装时师傅会提前打电话预约合适的时间。收到货后安装前师傅会再次确认产品型号,防止不必要的麻烦,安装好后特意使用了几天才来评价,产品非常好用,吸力大,噪音小,挥手控制非常方便,厨房一点油烟味都闻不到。总之是一款性价比非常高的产品,大家有需要的可以放心购买了。", + "createTime": "6月27日", + "createTimeInterval": "1周前", + "intervalDay": "19", + "reply": "", + "video": { + "cloudVideoUrl": "//cloud.video.taobao.com/play/u/null/p/1/d/hd/e/6/t/1/524727425750.mp4", + "coverUrl": "//img.alicdn.com/imgextra/i2/O1CN01YKoyyf1OCuUpP8JgI_!!4611686018427384518-0-tbbala.jpg", + "extraMap": { + "matchExpression": "false" + }, + "height": "1280", + "sourceVideoUrl": "//pingjia.alicdn.com/aus/wantu_pingjia/341075530/2df9b795ecbc40378dfd885b7538e33d.mp4", + "status": "1", + "videoId": "524727425750", + "videoVoice": "true", + "width": "720" + } + }, + "auctionNumId": "907297542617", + "auctionTitle": "新品海尔抽油烟机大嘴C61Pro变频大吸力顶侧双吸家用厨房吸油烟机", + "copy": "false", + "createTime": "6月23日", + "createTimeInterval": "1周前", + "creditLevel": "8", + "extraInfoMap": { + "userGrade": "5", + "report_url": "https://market.m.taobao.com/app/msd/buyer-aqcenter/report.html?bizSource=taobao&from=ItemComment&subjectType=ITEM_RATE&subjectId=1276186780208#/index" + }, + "feedback": "此用户没有填写评价。", + "feedbackDate": "2025年6月23日", + "formalBlackUser": "false", + "goldUser": "false", + "hasDetail": "true", + "headFrameUrl": "", + "headPicUrl": "//sns.m.taobao.com/avatar/sns/user/flag/sns_logo?type=taobao&kn=wwc_tb_11&bizCode=taobao_avatar&userFlag=RAzN84GK7wS8eP35LZnzcszMfhtU7EYeVZPCWQJunzzTA3LWGDLCGbAp5WU79JYvxRLw8xxZMQCsRSuFQ1sh2C5UpzsE4XBbXxLJ4yzmuVEZSKmCKki7YiBE7tcvQu3DDBDjs1qJzcT82gMDe19iXU2d39smpX6LrJmtoWy", + "homepageUrl": "https://market.m.taobao.com/app/mtb/personal-homepage/pages/index/index.html?disableNav=YES&userId=TKXzEeQMyqN2%2FU04tKkElg%3D%3D&keyName=kc_lightspeed&userInfo=%7B%22userLogo%22%3A%22http%3A%2F%2Fimg.alicdn.com%2Fsns_logo%2Fi1%2F116700155742850086%2FTB2M9D8iVXXXXaXXXXXXXXXXXXX_%21%210-mytaobao.jpg%22%2C%22backColor%22%3A%22%23B0AFDA%22%2C%22userNick%22%3A%22%E6%BD%87%E6%BD%87%E6%B4%92%E6%B4%92%E5%90%91%E5%89%8D%E8%B5%B0%22%7D&source=rate_list&initTab=homepage", + "id": "1276186780208", + "interactInfo": { + "alreadyDislike": "false", + "alreadyLike": "false", + "commentCount": "0", + "enableComment": "true", + "enableLike": "true", + "enableShare": "true", + "likeCount": "0", + "readCount": "24" + }, + "own": "false", + "rateType": "1", + "recomDesc": "我还写了购物笔记哦", + "reduceUserNick": "陈**6", + "repeatBusiness": "false", + "reply": "", + "share": { + "detailShareUrl": "https://web.m.taobao.com/app/mtb-guang/showcase/transfer?target_page=rate_detail&target_h5=https%3A%2F%2Fh5.m.taobao.com%2Fuser_comment%2Fcomment_detail.html&rateId=1276186780208", + "detailUrl": "//h5.m.taobao.com/tnode/index.htm?tnode=page_ratedetail%40ugc%3fpangesture%3dpullrightexit%26navbarHide%3dtrue%26immersive%3dtrue&rateId=1276186780208&headPic=http%3A%2F%2Fsns.m.taobao.com%2Favatar%2Fsns%2Fuser%2Fflag%2Fsns_logo%3Ftype%3Dtaobao%26kn%3Dwwc_tb_11%26bizCode%3Dtaobao_avatar%26userFlag%3DRAzN84GK7wS8eP35LZnzcszMfhtU7EYeVZPCWQJunzzTA3LWGDLCGbAp5WU79JYvxRLw8xxZMQCsRSuFQ1sh2C5UpzsE4XBbXxLJ4yzmuVEZSKmCKki7YiBE7tcvQu3DDBDjs1qJzcT82gMDe19iXU2d39smpX6LrJmtoWy", + "shareCover": "//img.alicdn.com/imgextra/i3/4611686018427384518/O1CN01aO5OEl1OCuUw3ZTow_!!4611686018427384518-0-rate.jpg", + "shareSupport": "true", + "shareURL": "//h5.m.taobao.com/user_comment/comment_detail.html?rateId=1276186780208&sellerId=MMmIyvC*HP0RIMHgbvGQbOH8WM8leOFcWPC8SOHkWPFxT&isEncode=true" + }, + "skuId": "5767407060270", + "skuMap": { + "颜色分类": "28m³/min 钢琴黑" + }, + "skuValueStr": "28m³/min 钢琴黑", + "structTagEndSize": "0", + "topRate": "0", + "userId": "0", + "userIndexURL": "", + "userMark": "xoTuykdbL8hjFjYe6+EgXCTtbI9CACffHlp8+BJcRPc=", + "userNick": "陈**6", + "userStar": "6", + "userStarPic": "https://img.alicdn.com/imgextra/i3/O1CN01QZTjHW1F4oegDvuEX_!!6000000000434-2-tps-92-45.png", + "userTagList": [ + { + "extraInfo": { + "level": "8" + }, + "tagCode": "credit", + "tagDesc": "信用等级", + "tagIconHeight": "27", + "tagIconPic": "https://img.alicdn.com/imgextra/i3/O1CN01QZTjHW1F4oegDvuEX_!!6000000000434-2-tps-92-45.png", + "tagIconWidth": "53" + } + ] + }, + { + "addCartUrl": "https://sku.taobao.com/index.htm?itemId=907297542617&bottomMode=ADDCART&asyncApiType=normalBuy&skuId=5767407060270", + "allowComment": "true", + "allowInteract": "true", + "allowNote": "false", + "allowReportReview": "true", + "allowReportUser": "false", + "allowShieldReview": "false", + "allowShieldUser": "false", + "annoy": "0", + "auctionNumId": "907297542617", + "auctionTitle": "新品海尔抽油烟机大嘴C61Pro变频大吸力顶侧双吸家用厨房吸油烟机", + "copy": "false", + "createTime": "6月23日", + "createTimeInterval": "1周前", + "creditLevel": "10", + "decision": { + "decisionNode": [ + { + "highLight": "false", + "title": "安装很快" + }, + { + "highLight": "false", + "title": "吸油很好" + } + ], + "title": "商品性能及服务" + }, + "extraInfoMap": { + "userGrade": "5", + "report_url": "https://market.m.taobao.com/app/msd/buyer-aqcenter/report.html?bizSource=taobao&from=ItemComment&subjectType=ITEM_RATE&subjectId=1275827688123#/index" + }, + "feedPicList": [ + { + "cover": "false", + "extraMap": { + "matchExpression": "false" + }, + "fileId": "1671808486885816718", + "height": "1706", + "status": "1", + "thumbnail": "//img.alicdn.com/imgextra/i3/4611686018427381294/O1CN01VGAoJG1zUtpvktRWQ_!!4611686018427381294-0-tbbala.jpg", + "width": "1279" + }, + { + "cover": "false", + "extraMap": { + "matchExpression": "false" + }, + "fileId": "1671808485605793648", + "height": "1706", + "status": "1", + "thumbnail": "//img.alicdn.com/imgextra/i4/4611686018427381294/O1CN01FpDQCv1zUtpuMGb32_!!4611686018427381294-0-tbbala.jpg", + "width": "1279" + }, + { + "cover": "false", + "extraMap": { + "matchExpression": "false" + }, + "fileId": "1671808487103909879", + "height": "1706", + "status": "1", + "thumbnail": "//img.alicdn.com/imgextra/i4/4611686018427381294/O1CN01LACM7p1zUtpvzeXW3_!!4611686018427381294-0-tbbala.jpg", + "width": "1279" + }, + { + "cover": "false", + "extraMap": { + "matchExpression": "false" + }, + "fileId": "1671808486885848712", + "height": "2796", + "status": "1", + "thumbnail": "//img.alicdn.com/imgextra/i2/4611686018427381294/O1CN01hhG51a1zUtpvktZqS_!!4611686018427381294-0-tbbala.jpg", + "width": "1290" + }, + { + "cover": "false", + "extraMap": { + "matchExpression": "false" + }, + "fileId": "1671808487386953431", + "height": "1706", + "status": "1", + "thumbnail": "//img.alicdn.com/imgextra/i4/4611686018427381294/O1CN01tagJ631zUtpwIoA4d_!!4611686018427381294-0-tbbala.jpg", + "width": "1279" + } + ], + "feedPicPathList": [ + "//img.alicdn.com/imgextra/i3/4611686018427381294/O1CN01VGAoJG1zUtpvktRWQ_!!4611686018427381294-0-tbbala.jpg", + "//img.alicdn.com/imgextra/i4/4611686018427381294/O1CN01FpDQCv1zUtpuMGb32_!!4611686018427381294-0-tbbala.jpg", + "//img.alicdn.com/imgextra/i4/4611686018427381294/O1CN01LACM7p1zUtpvzeXW3_!!4611686018427381294-0-tbbala.jpg", + "//img.alicdn.com/imgextra/i2/4611686018427381294/O1CN01hhG51a1zUtpvktZqS_!!4611686018427381294-0-tbbala.jpg", + "//img.alicdn.com/imgextra/i4/4611686018427381294/O1CN01tagJ631zUtpwIoA4d_!!4611686018427381294-0-tbbala.jpg" + ], + "feedback": "初次拆开海尔大嘴油烟机的包装箱,我并未预料到这台看似普通的厨房电器,竟会彻底改变我对中式爆炒的恐惧。作为一位热爱烹饪却长期饱受油烟困扰的家庭主厨,我早已对厨房里弥漫的油烟味感到厌倦。这次选择了海尔大嘴系列的C61pro型号,安装师傅安装认真仔细,350mm的厚度丝毫没有遮挡视线或压缩操作空间。 日常使用体验 按下开关的瞬间,我便感受到这款油烟机的与众不同。顶侧双吸结构的独特设计让吸烟范围覆盖了灶台上方和侧面区域,形成了一道隐形的油烟防护网。 挥手感应控制是我最钟爱的功能之一。手上沾满油污时,只需在感应区轻轻一挥,机器立即响应启动。风量会根据油烟浓度自动调节——小火慢炖时低风量安静运行,爆炒辣椒时则自动提升至28m³/min的强劲吸力,大风压确保油烟瞬间排出公共烟道,绝不倒灌。", + "feedbackDate": "2025年6月23日", + "formalBlackUser": "false", + "goldUser": "false", + "hasDetail": "true", + "headFrameUrl": "", + "headPicUrl": "//sns.m.taobao.com/avatar/sns/user/flag/sns_logo?type=taobao&kn=wwc_tb_11&bizCode=taobao_avatar&userFlag=RAzN83923zmuym8oqcXSSMSQq8SVJLsPWnzEYYHA7z8xHpiBGo1fBmToi7LDbRmt2nqSYjZbbkF3K3iGvw29JWR2jMGri6qy1HZ4J39aRkAYFd5ukjNqtayZHCAK", + "id": "1275827688123", + "interactInfo": { + "alreadyDislike": "false", + "alreadyLike": "false", + "commentCount": "0", + "enableComment": "true", + "enableLike": "true", + "enableShare": "true", + "likeCount": "2", + "readCount": "124" + }, + "own": "false", + "rateType": "1", + "reduceUserNick": "t**6", + "repeatBusiness": "false", + "reply": "朋友,每一滴汗水都挥洒在彼此的谈笑与合作间,如果好评只是些许措辞,那么您的满意才是我们真正的欣慰。加入会员领取更多专享福利呦~", + "share": { + "detailShareUrl": "https://web.m.taobao.com/app/mtb-guang/showcase/transfer?target_page=rate_detail&target_h5=https%3A%2F%2Fh5.m.taobao.com%2Fuser_comment%2Fcomment_detail.html&rateId=1275827688123", + "detailUrl": "//h5.m.taobao.com/tnode/index.htm?tnode=page_ratedetail%40ugc%3fpangesture%3dpullrightexit%26navbarHide%3dtrue%26immersive%3dtrue&rateId=1275827688123&headPic=http%3A%2F%2Fsns.m.taobao.com%2Favatar%2Fsns%2Fuser%2Fflag%2Fsns_logo%3Ftype%3Dtaobao%26kn%3Dwwc_tb_11%26bizCode%3Dtaobao_avatar%26userFlag%3DRAzN83923zmuym8oqcXSSMSQq8SVJLsPWnzEYYHA7z8xHpiBGo1fBmToi7LDbRmt2nqSYjZbbkF3K3iGvw29JWR2jMGri6qy1HZ4J39aRkAYFd5ukjNqtayZHCAK", + "shareCover": "//img.alicdn.com/imgextra/i3/4611686018427381294/O1CN01VGAoJG1zUtpvktRWQ_!!4611686018427381294-0-tbbala.jpg", + "shareSupport": "true", + "shareURL": "//h5.m.taobao.com/user_comment/comment_detail.html?rateId=1275827688123&sellerId=MMmIyvC*HP0RIMHgbvGQbOH8WM8leOFcWPC8SOHkWPFxT&isEncode=true" + }, + "skuId": "5767407060270", + "skuMap": { + "颜色分类": "28m³/min 钢琴黑" + }, + "skuValueStr": "28m³/min 钢琴黑", + "skuVids": "32888575647", + "structTagEndSize": "342", + "topRate": "0", + "userId": "0", + "userIndexURL": "", + "userMark": "y28QwlSQUR/mKh+CLKKhIMCTVrprCxAr3exGHzSG8vY=", + "userNick": "t**6", + "userStar": "8", + "userStarPic": "https://img.alicdn.com/imgextra/i4/O1CN019QZnaG1U1LtUAPn6e_!!6000000002457-2-tps-92-45.png", + "userTagList": [ + { + "extraInfo": { + "level": "10" + }, + "tagCode": "credit", + "tagDesc": "信用等级", + "tagIconHeight": "27", + "tagIconPic": "https://img.alicdn.com/imgextra/i4/O1CN019QZnaG1U1LtUAPn6e_!!6000000002457-2-tps-92-45.png", + "tagIconWidth": "53" + } + ] + }, + { + "addCartUrl": "https://sku.taobao.com/index.htm?itemId=907297542617&bottomMode=ADDCART&asyncApiType=normalBuy&skuId=5937022766250", + "allowComment": "true", + "allowInteract": "true", + "allowNote": "false", + "allowReportReview": "true", + "allowReportUser": "false", + "allowShieldReview": "false", + "allowShieldUser": "false", + "annoy": "0", + "auctionNumId": "907297542617", + "auctionTitle": "新品海尔抽油烟机大嘴C61Pro变频大吸力顶侧双吸家用厨房吸油烟机", + "copy": "false", + "createTime": "6月22日", + "createTimeInterval": "1周前", + "creditLevel": "12", + "decision": { + "decisionNode": [ + { + "highLight": "false", + "title": "吸油很好" + }, + { + "highLight": "false", + "title": "安装很快" + } + ], + "title": "商品性能及服务" + }, + "extraInfoMap": { + "userGrade": "5", + "report_url": "https://market.m.taobao.com/app/msd/buyer-aqcenter/report.html?bizSource=taobao&from=ItemComment&subjectType=ITEM_RATE&subjectId=1275741828419#/index" + }, + "feedPicList": [ + { + "cover": "false", + "extraMap": { + "matchExpression": "false" + }, + "fileId": "1647908486573675344", + "height": "1280", + "status": "1", + "thumbnail": "//img.alicdn.com/imgextra/i4/4611686018427381455/O1CN01ZAT0hn1xjRB1Rq50C_!!4611686018427381455-0-rate.jpg", + "width": "720" + }, + { + "cover": "false", + "extraMap": { + "matchExpression": "false" + }, + "fileId": "1647908486208901627", + "height": "1280", + "status": "1", + "thumbnail": "//img.alicdn.com/imgextra/i2/4611686018427381455/O1CN01ONAxo91xjRB139Wh9_!!4611686018427381455-0-rate.jpg", + "width": "720" + } + ], + "feedPicPathList": [ + "//img.alicdn.com/imgextra/i4/4611686018427381455/O1CN01ZAT0hn1xjRB1Rq50C_!!4611686018427381455-0-rate.jpg", + "//img.alicdn.com/imgextra/i2/4611686018427381455/O1CN01ONAxo91xjRB139Wh9_!!4611686018427381455-0-rate.jpg" + ], + "feedback": "油烟机质量和外观都很好,材料看着很高档,安装师傅也很专业。", + "feedbackDate": "2025年6月22日", + "formalBlackUser": "false", + "goldUser": "false", + "hasDetail": "true", + "headFrameUrl": "", + "headPicUrl": "//sns.m.taobao.com/avatar/sns/user/flag/sns_logo?type=taobao&kn=wwc_tb_11&bizCode=taobao_avatar&userFlag=RAzN83923zmuym8oqcXSSMSQq8SVJLsPWnzEWjS4ZVK9A3DS2B3UmaFayUMZHNj984KEEzbF9Nd7PJKLry9SqNWZfLFdibZwjswf57hz4PN25SLQVBA7uoHZYrZ6", + "id": "1275741828419", + "interactInfo": { + "alreadyDislike": "false", + "alreadyLike": "false", + "commentCount": "0", + "enableComment": "true", + "enableLike": "true", + "enableShare": "true", + "likeCount": "0", + "readCount": "38" + }, + "own": "false", + "rateType": "1", + "reduceUserNick": "l**4", + "repeatBusiness": "false", + "reply": "我能想到最浪漫的事~就是看到您对着我们的宝贝轻扬嘴角~愿宝贝能在您的家里发挥巨大的作用~加入会员领取更多专享福利呦~", + "share": { + "detailShareUrl": "https://web.m.taobao.com/app/mtb-guang/showcase/transfer?target_page=rate_detail&target_h5=https%3A%2F%2Fh5.m.taobao.com%2Fuser_comment%2Fcomment_detail.html&rateId=1275741828419", + "detailUrl": "//h5.m.taobao.com/tnode/index.htm?tnode=page_ratedetail%40ugc%3fpangesture%3dpullrightexit%26navbarHide%3dtrue%26immersive%3dtrue&rateId=1275741828419&headPic=http%3A%2F%2Fsns.m.taobao.com%2Favatar%2Fsns%2Fuser%2Fflag%2Fsns_logo%3Ftype%3Dtaobao%26kn%3Dwwc_tb_11%26bizCode%3Dtaobao_avatar%26userFlag%3DRAzN83923zmuym8oqcXSSMSQq8SVJLsPWnzEWjS4ZVK9A3DS2B3UmaFayUMZHNj984KEEzbF9Nd7PJKLry9SqNWZfLFdibZwjswf57hz4PN25SLQVBA7uoHZYrZ6", + "shareCover": "//img.alicdn.com/imgextra/i4/4611686018427381455/O1CN01ZAT0hn1xjRB1Rq50C_!!4611686018427381455-0-rate.jpg", + "shareSupport": "true", + "shareURL": "//h5.m.taobao.com/user_comment/comment_detail.html?rateId=1275741828419&sellerId=MMmIyvC*HP0RIMHgbvGQbOH8WM8leOFcWPC8SOHkWPFxT&isEncode=true" + }, + "skuId": "5937022766250", + "skuMap": { + "颜色分类": "25m³/min 钢琴黑" + }, + "skuValueStr": "25m³/min 钢琴黑", + "skuVids": "36004921502", + "structTagEndSize": "29", + "topRate": "0", + "userId": "0", + "userIndexURL": "", + "userMark": "goGf4brg7Z/ApjZHzK+p0It1Idh/MZY2oIbZFVQttkc=", + "userNick": "l**4", + "userStar": "10", + "userStarPic": "https://img.alicdn.com/imgextra/i1/O1CN01phm4Vd24PvJPU1Vhb_!!6000000007384-2-tps-92-45.png", + "userTagList": [ + { + "extraInfo": { + "level": "12" + }, + "tagCode": "credit", + "tagDesc": "信用等级", + "tagIconHeight": "27", + "tagIconPic": "https://img.alicdn.com/imgextra/i1/O1CN01phm4Vd24PvJPU1Vhb_!!6000000007384-2-tps-92-45.png", + "tagIconWidth": "53" + } + ], + "video": { + "cloudVideoUrl": "//cloud.video.taobao.com/play/u/null/p/1/d/hd/e/6/t/1/524203443238.mp4", + "coverUrl": "//img.alicdn.com/imgextra/i2/O1CN01QYg0zO1xjRAztMhjS_!!4611686018427381455-0-tbbala.jpg", + "extraMap": { + "matchExpression": "false" + }, + "height": "954", + "sourceVideoUrl": "//pingjia.alicdn.com/aus/wantu_pingjia/513181561/bb6140f42dda437499257adfeb8e3b11.mp4", + "status": "1", + "videoId": "524203443238", + "videoVoice": "true", + "width": "540" + } + }, + { + "addCartUrl": "https://sku.taobao.com/index.htm?itemId=907297542617&bottomMode=ADDCART&asyncApiType=normalBuy&skuId=5937022766250", + "allowComment": "true", + "allowInteract": "true", + "allowNote": "false", + "allowReportReview": "true", + "allowReportUser": "false", + "allowShieldReview": "false", + "allowShieldUser": "false", + "annoy": "0", + "auctionNumId": "907297542617", + "auctionTitle": "新品海尔抽油烟机大嘴C61Pro变频大吸力顶侧双吸家用厨房吸油烟机", + "copy": "false", + "createTime": "6月18日", + "createTimeInterval": "2周前", + "creditLevel": "9", + "decision": { + "decisionNode": [ + { + "highLight": "false", + "title": "吸油很好" + }, + { + "highLight": "false", + "title": "安装很快" + } + ], + "title": "商品性能及服务" + }, + "extraInfoMap": { + "userGrade": "5", + "report_url": "https://market.m.taobao.com/app/msd/buyer-aqcenter/report.html?bizSource=taobao&from=ItemComment&subjectType=ITEM_RATE&subjectId=1275446349827#/index" + }, + "feedPicList": [ + { + "cover": "false", + "extraMap": { + "matchExpression": "false" + }, + "fileId": "1980408481348754616", + "height": "3468", + "status": "1", + "thumbnail": "//img.alicdn.com/imgextra/i2/4611686018427386380/O1CN01QENl4y2MII5tGOswq_!!4611686018427386380-0-rate.jpg", + "width": "4624" + } + ], + "feedPicPathList": [ + "//img.alicdn.com/imgextra/i2/4611686018427386380/O1CN01QENl4y2MII5tGOswq_!!4611686018427386380-0-rate.jpg" + ], + "feedback": "这款油烟机完全长在审美点上!机身线条流畅,配色高级,装在厨房瞬间提升格调。实际使用更惊喜,吸力强劲,油烟秒吸不跑烟,运行时噪音还很小。智能操控简单便捷,油网拆卸清洗也轻松,真心好用,性价比超高,闭眼入不踩雷!", + "feedbackDate": "2025年6月18日", + "formalBlackUser": "false", + "goldUser": "false", + "hasDetail": "true", + "headFrameUrl": "", + "headPicUrl": "//sns.m.taobao.com/avatar/sns/user/flag/sns_logo?type=taobao&kn=wwc_tb_11&bizCode=taobao_avatar&userFlag=RAzN84GK7wS8eNMnE1E4627tRY6FDsHZxwbFeHdAaBd1Pp3XTtZBuSJNpXBDVdNvickJyezVq4k2a4dE9Fyrreuo9tfwDnXNzpyPEk7XYa9C2Rj8QyNy6PT56tPz3mKFNujTAvDFiUBeus3jRkipy7XbDixBr7xdYME4s8u", + "id": "1275446349827", + "interactInfo": { + "alreadyDislike": "false", + "alreadyLike": "false", + "commentCount": "0", + "enableComment": "true", + "enableLike": "true", + "enableShare": "true", + "likeCount": "0", + "readCount": "28" + }, + "own": "false", + "rateType": "1", + "reduceUserNick": "李**6", + "repeatBusiness": "true", + "reply": "赠人玫瑰手有余香,您的好评是对海尔最大的支持与鼓励,也将是我们不断前进的动力,期待再次合作,感谢您的支持,祝您生活愉快~加入会员领取更多专享福利呦~", + "share": { + "detailShareUrl": "https://web.m.taobao.com/app/mtb-guang/showcase/transfer?target_page=rate_detail&target_h5=https%3A%2F%2Fh5.m.taobao.com%2Fuser_comment%2Fcomment_detail.html&rateId=1275446349827", + "detailUrl": "//h5.m.taobao.com/tnode/index.htm?tnode=page_ratedetail%40ugc%3fpangesture%3dpullrightexit%26navbarHide%3dtrue%26immersive%3dtrue&rateId=1275446349827&headPic=http%3A%2F%2Fsns.m.taobao.com%2Favatar%2Fsns%2Fuser%2Fflag%2Fsns_logo%3Ftype%3Dtaobao%26kn%3Dwwc_tb_11%26bizCode%3Dtaobao_avatar%26userFlag%3DRAzN84GK7wS8eNMnE1E4627tRY6FDsHZxwbFeHdAaBd1Pp3XTtZBuSJNpXBDVdNvickJyezVq4k2a4dE9Fyrreuo9tfwDnXNzpyPEk7XYa9C2Rj8QyNy6PT56tPz3mKFNujTAvDFiUBeus3jRkipy7XbDixBr7xdYME4s8u", + "shareCover": "//img.alicdn.com/imgextra/i2/4611686018427386380/O1CN01QENl4y2MII5tGOswq_!!4611686018427386380-0-rate.jpg", + "shareSupport": "true", + "shareURL": "//h5.m.taobao.com/user_comment/comment_detail.html?rateId=1275446349827&sellerId=MMmIyvC*HP0RIMHgbvGQbOH8WM8leOFcWPC8SOHkWPFxT&isEncode=true" + }, + "skuId": "5937022766250", + "skuMap": { + "颜色分类": "25m³/min 钢琴黑" + }, + "skuValueStr": "25m³/min 钢琴黑", + "skuVids": "36004921502", + "structTagEndSize": "104", + "topRate": "0", + "userId": "0", + "userIndexURL": "", + "userMark": "4gs+tAD1zLUO1b10AKe58lHm3xGV2iagfvGiY71iqug=", + "userNick": "李**6", + "userStar": "7", + "userStarPic": "https://img.alicdn.com/imgextra/i4/O1CN01ZlCYMx1nbVriw6u0S_!!6000000005108-2-tps-92-45.png", + "userTagList": [ + { + "extraInfo": { + "level": "9" + }, + "tagCode": "credit", + "tagDesc": "信用等级", + "tagIconHeight": "27", + "tagIconPic": "https://img.alicdn.com/imgextra/i4/O1CN01ZlCYMx1nbVriw6u0S_!!6000000005108-2-tps-92-45.png", + "tagIconWidth": "53" + } + ] + }, + { + "addCartUrl": "https://sku.taobao.com/index.htm?itemId=907297542617&bottomMode=ADDCART&asyncApiType=normalBuy&skuId=5767407060270", + "allowComment": "true", + "allowInteract": "true", + "allowNote": "true", + "allowReportReview": "true", + "allowReportUser": "false", + "allowShieldReview": "false", + "allowShieldUser": "false", + "annoy": "0", + "auctionNumId": "907297542617", + "auctionTitle": "新品海尔抽油烟机大嘴C61Pro变频大吸力顶侧双吸家用厨房吸油烟机", + "copy": "false", + "createTime": "6月15日", + "createTimeInterval": "2周前", + "creditLevel": "11", + "extraInfoMap": { + "userGrade": "5", + "report_url": "https://market.m.taobao.com/app/msd/buyer-aqcenter/report.html?bizSource=taobao&from=ItemComment&subjectType=ITEM_RATE&subjectId=1275209311118#/index" + }, + "feedPicList": [ + { + "cover": "false", + "extraMap": { + "matchExpression": "false" + }, + "fileId": "1981508479118345493", + "height": "2243", + "status": "1", + "thumbnail": "//img.alicdn.com/imgextra/i3/4611686018427382823/O1CN019U1iFk2MNKRy4fLV7_!!4611686018427382823-0-tbbala.jpg", + "width": "1179" + }, + { + "cover": "false", + "extraMap": { + "matchExpression": "false" + }, + "fileId": "1981508478643816704", + "height": "1949", + "status": "1", + "thumbnail": "//img.alicdn.com/imgextra/i2/4611686018427382823/O1CN01yt4wIE2MNKRxYYGsy_!!4611686018427382823-0-tbbala.jpg", + "width": "1179" + }, + { + "cover": "false", + "extraMap": { + "matchExpression": "false" + }, + "fileId": "1981508480400607876", + "height": "2129", + "status": "1", + "thumbnail": "//img.alicdn.com/imgextra/i1/4611686018427382823/O1CN01MG1t7u2MNKRzTRaWS_!!4611686018427382823-0-tbbala.jpg", + "width": "1179" + } + ], + "feedPicPathList": [ + "//img.alicdn.com/imgextra/i3/4611686018427382823/O1CN019U1iFk2MNKRy4fLV7_!!4611686018427382823-0-tbbala.jpg", + "//img.alicdn.com/imgextra/i2/4611686018427382823/O1CN01yt4wIE2MNKRxYYGsy_!!4611686018427382823-0-tbbala.jpg", + "//img.alicdn.com/imgextra/i1/4611686018427382823/O1CN01MG1t7u2MNKRzTRaWS_!!4611686018427382823-0-tbbala.jpg" + ], + "feedback": "看了好久才下手这款海尔的油烟机,顶侧一体,净烟净味,颜值也高,相信大品牌的质量。 ", + "feedbackDate": "2025年6月15日", + "formalBlackUser": "false", + "goldUser": "false", + "hasDetail": "true", + "headFrameUrl": "", + "headPicUrl": "//sns.m.taobao.com/avatar/sns/user/flag/sns_logo?type=taobao&kn=wwc_tb_11&bizCode=taobao_avatar&userFlag=RAzN84GK7wS8eNMnE1E4627tRY6FDsHZxwbGaWse7gjZ7TJY3SsvqWjhcLjS6EjDqmwzVZeHCfR7tijhMha9yLVcvMeChuqHJ23KcnDtACare4KL4W4pfGwFkX8S15WoUwHmuioZh7fojkakc5NNXL6tAP42CS4WCaSxTHB", + "homepageUrl": "https://market.m.taobao.com/app/mtb/personal-homepage/pages/index/index.html?disableNav=YES&userId=54OhAQS3366YNI6qYZT82g%3D%3D&keyName=kc_lightspeed&source=rate_list&initTab=homepage", + "id": "1275209311118", + "interactInfo": { + "alreadyDislike": "false", + "alreadyLike": "false", + "commentCount": "0", + "enableComment": "true", + "enableLike": "true", + "enableShare": "true", + "likeCount": "0", + "readCount": "24" + }, + "own": "false", + "rateType": "1", + "recomDesc": "我还写了购物笔记哦", + "reduceUserNick": "n**e", + "repeatBusiness": "true", + "reply": "亲亲感谢您的支持和认可,简单的话语,带来满满的感动,愿宝贝带给您更多舒适,期待您的下次光临,海尔官方旗舰店祝您生活美满!加入会员领取更多专享福利呦~", + "share": { + "detailShareUrl": "https://web.m.taobao.com/app/mtb-guang/showcase/transfer?target_page=rate_detail&target_h5=https%3A%2F%2Fh5.m.taobao.com%2Fuser_comment%2Fcomment_detail.html&rateId=1275209311118", + "detailUrl": "//h5.m.taobao.com/tnode/index.htm?tnode=page_ratedetail%40ugc%3fpangesture%3dpullrightexit%26navbarHide%3dtrue%26immersive%3dtrue&rateId=1275209311118&headPic=http%3A%2F%2Fsns.m.taobao.com%2Favatar%2Fsns%2Fuser%2Fflag%2Fsns_logo%3Ftype%3Dtaobao%26kn%3Dwwc_tb_11%26bizCode%3Dtaobao_avatar%26userFlag%3DRAzN84GK7wS8eNMnE1E4627tRY6FDsHZxwbGaWse7gjZ7TJY3SsvqWjhcLjS6EjDqmwzVZeHCfR7tijhMha9yLVcvMeChuqHJ23KcnDtACare4KL4W4pfGwFkX8S15WoUwHmuioZh7fojkakc5NNXL6tAP42CS4WCaSxTHB", + "shareCover": "//img.alicdn.com/imgextra/i3/4611686018427382823/O1CN019U1iFk2MNKRy4fLV7_!!4611686018427382823-0-tbbala.jpg", + "shareSupport": "true", + "shareURL": "//h5.m.taobao.com/user_comment/comment_detail.html?rateId=1275209311118&sellerId=MMmIyvC*HP0RIMHgbvGQbOH8WM8leOFcWPC8SOHkWPFxT&isEncode=true" + }, + "skuId": "5767407060270", + "skuMap": { + "颜色分类": "28m³/min 钢琴黑" + }, + "skuValueStr": "28m³/min 钢琴黑", + "skuVids": "32888575647", + "structTagEndSize": "41", + "topRate": "0", + "userId": "0", + "userIndexURL": "", + "userMark": "QPbDFPeCk3+BCYfDbznsa+er3kUVpNKoNm2evk1f3IY=", + "userNick": "n**e", + "userStar": "9", + "userStarPic": "https://img.alicdn.com/imgextra/i3/O1CN01PIYxrZ22FGrmiDphN_!!6000000007090-2-tps-92-45.png", + "userTagList": [ + { + "extraInfo": { + "level": "11" + }, + "tagCode": "credit", + "tagDesc": "信用等级", + "tagIconHeight": "27", + "tagIconPic": "https://img.alicdn.com/imgextra/i3/O1CN01PIYxrZ22FGrmiDphN_!!6000000007090-2-tps-92-45.png", + "tagIconWidth": "53" + } + ] + }, + { + "addCartUrl": "https://sku.taobao.com/index.htm?itemId=907297542617&bottomMode=ADDCART&asyncApiType=normalBuy&skuId=5767407060270", + "allowComment": "true", + "allowInteract": "true", + "allowNote": "false", + "allowReportReview": "true", + "allowReportUser": "false", + "allowShieldReview": "false", + "allowShieldUser": "false", + "annoy": "0", + "auctionNumId": "907297542617", + "auctionTitle": "新品海尔抽油烟机大嘴C61Pro变频大吸力顶侧双吸家用厨房吸油烟机", + "copy": "false", + "createTime": "6月13日", + "createTimeInterval": "3周前", + "creditLevel": "9", + "decision": { + "decisionNode": [ + { + "highLight": "false", + "title": "安装很快" + }, + { + "highLight": "false", + "title": "吸油很好" + } + ], + "title": "商品性能及服务" + }, + "extraInfoMap": { + "userGrade": "5", + "report_url": "https://market.m.taobao.com/app/msd/buyer-aqcenter/report.html?bizSource=taobao&from=ItemComment&subjectType=ITEM_RATE&subjectId=1275033378506#/index" + }, + "feedPicList": [ + { + "cover": "false", + "extraMap": { + "matchExpression": "false" + }, + "fileId": "1342408475841409975", + "height": "2126", + "status": "1", + "thumbnail": "//img.alicdn.com/imgextra/i1/4611686018427382720/O1CN01ywvv9U1bAFC0xnHWB_!!4611686018427382720-0-tbbala.jpg", + "width": "1480" + }, + { + "cover": "false", + "extraMap": { + "matchExpression": "false" + }, + "fileId": "1342408478261916673", + "height": "2796", + "status": "1", + "thumbnail": "//img.alicdn.com/imgextra/i2/4611686018427382720/O1CN01yF07XC1bAFC3bbTsn_!!4611686018427382720-0-tbbala.jpg", + "width": "1290" + } + ], + "feedPicPathList": [ + "//img.alicdn.com/imgextra/i1/4611686018427382720/O1CN01ywvv9U1bAFC0xnHWB_!!4611686018427382720-0-tbbala.jpg", + "//img.alicdn.com/imgextra/i2/4611686018427382720/O1CN01yF07XC1bAFC3bbTsn_!!4611686018427382720-0-tbbala.jpg" + ], + "feedback": "收到货师傅给安装好了,颜值挺高,试机了。自己也挺大的挺好的", + "feedbackDate": "2025年6月13日", + "formalBlackUser": "false", + "goldUser": "false", + "hasDetail": "true", + "headFrameUrl": "", + "headPicUrl": "//sns.m.taobao.com/avatar/sns/user/flag/sns_logo?type=taobao&kn=wwc_tb_11&bizCode=taobao_avatar&userFlag=RAzN84GK7wS8eNMnE1E4627tRY6FDsHZxwbFnaaHQCovYK8ehTf6QnCGpUbQxZgCKgTEjDrCjrNj1UFXJJ9KsSBLweUkyci66tgVXn6Nm7TT33z5GVCEVwAZ1dMe2uFdSP26xJi8d2LY4ZgTjoUeKZ6KRZuTLemYuGJz1Lu", + "id": "1275033378506", + "interactInfo": { + "alreadyDislike": "false", + "alreadyLike": "false", + "commentCount": "0", + "enableComment": "true", + "enableLike": "true", + "enableShare": "true", + "likeCount": "0", + "readCount": "24" + }, + "own": "false", + "rateType": "1", + "reduceUserNick": "倾**夏", + "repeatBusiness": "true", + "reply": "感谢亲对海尔的支持与信赖,您简短的几句肯定胜过无数的赞美,您的满意就是对我们最大的支持!我们也会经常做一些优惠活动,请老朋友们多多关注哦!期待您的再次光临!祝您生活愉快!【海尔官方旗舰店】加入会员领取更多专享福利呦~", + "share": { + "detailShareUrl": "https://web.m.taobao.com/app/mtb-guang/showcase/transfer?target_page=rate_detail&target_h5=https%3A%2F%2Fh5.m.taobao.com%2Fuser_comment%2Fcomment_detail.html&rateId=1275033378506", + "detailUrl": "//h5.m.taobao.com/tnode/index.htm?tnode=page_ratedetail%40ugc%3fpangesture%3dpullrightexit%26navbarHide%3dtrue%26immersive%3dtrue&rateId=1275033378506&headPic=http%3A%2F%2Fsns.m.taobao.com%2Favatar%2Fsns%2Fuser%2Fflag%2Fsns_logo%3Ftype%3Dtaobao%26kn%3Dwwc_tb_11%26bizCode%3Dtaobao_avatar%26userFlag%3DRAzN84GK7wS8eNMnE1E4627tRY6FDsHZxwbFnaaHQCovYK8ehTf6QnCGpUbQxZgCKgTEjDrCjrNj1UFXJJ9KsSBLweUkyci66tgVXn6Nm7TT33z5GVCEVwAZ1dMe2uFdSP26xJi8d2LY4ZgTjoUeKZ6KRZuTLemYuGJz1Lu", + "shareCover": "//img.alicdn.com/imgextra/i1/4611686018427382720/O1CN01ywvv9U1bAFC0xnHWB_!!4611686018427382720-0-tbbala.jpg", + "shareSupport": "true", + "shareURL": "//h5.m.taobao.com/user_comment/comment_detail.html?rateId=1275033378506&sellerId=MMmIyvC*HP0RIMHgbvGQbOH8WM8leOFcWPC8SOHkWPFxT&isEncode=true" + }, + "skuId": "5767407060270", + "skuMap": { + "颜色分类": "28m³/min 钢琴黑" + }, + "skuValueStr": "28m³/min 钢琴黑", + "skuVids": "32888575647", + "structTagEndSize": "29", + "topRate": "0", + "userId": "0", + "userIndexURL": "", + "userMark": "h3V8SfoGN2aTqN2Vk0oI9JsTnW6D88ah7vqORUvKYIc=", + "userNick": "倾**夏", + "userStar": "7", + "userStarPic": "https://img.alicdn.com/imgextra/i4/O1CN01ZlCYMx1nbVriw6u0S_!!6000000005108-2-tps-92-45.png", + "userTagList": [ + { + "extraInfo": { + "level": "9" + }, + "tagCode": "credit", + "tagDesc": "信用等级", + "tagIconHeight": "27", + "tagIconPic": "https://img.alicdn.com/imgextra/i4/O1CN01ZlCYMx1nbVriw6u0S_!!6000000005108-2-tps-92-45.png", + "tagIconWidth": "53" + } + ] + }, + { + "addCartUrl": "https://sku.taobao.com/index.htm?itemId=907297542617&bottomMode=ADDCART&asyncApiType=normalBuy&skuId=5767407060270", + "allowComment": "true", + "allowInteract": "true", + "allowNote": "false", + "allowReportReview": "true", + "allowReportUser": "false", + "allowShieldReview": "false", + "allowShieldUser": "false", + "annoy": "0", + "auctionNumId": "907297542617", + "auctionTitle": "新品海尔抽油烟机大嘴C61Pro变频大吸力顶侧双吸家用厨房吸油烟机", + "copy": "false", + "createTime": "6月9日", + "createTimeInterval": "3周前", + "creditLevel": "11", + "decision": { + "decisionNode": [ + { + "highLight": "false", + "title": "吸油很好" + }, + { + "highLight": "false", + "title": "安装很快" + } + ], + "title": "商品性能及服务" + }, + "extraInfoMap": { + "userGrade": "5", + "report_url": "https://market.m.taobao.com/app/msd/buyer-aqcenter/report.html?bizSource=taobao&from=ItemComment&subjectType=ITEM_RATE&subjectId=1274470848707#/index" + }, + "feedPicList": [ + { + "cover": "false", + "extraMap": { + "matchExpression": "false" + }, + "fileId": "1531208473889466528", + "height": "1080", + "status": "1", + "thumbnail": "//img.alicdn.com/imgextra/i4/4611686018427383472/O1CN01OYYtyx1p6wxr7aG80_!!4611686018427383472-0-rate.jpg", + "width": "1440" + }, + { + "cover": "false", + "extraMap": { + "matchExpression": "false" + }, + "fileId": "1531208472116258195", + "height": "1440", + "status": "1", + "thumbnail": "//img.alicdn.com/imgextra/i4/4611686018427383472/O1CN01vY6wPe1p6wxpBa3db_!!4611686018427383472-0-rate.jpg", + "width": "1080" + }, + { + "cover": "false", + "extraMap": { + "matchExpression": "false" + }, + "fileId": "1531208473794292297", + "height": "1440", + "status": "1", + "thumbnail": "//img.alicdn.com/imgextra/i2/4611686018427383472/O1CN010Q1UNX1p6wxr18uxl_!!4611686018427383472-0-rate.jpg", + "width": "1080" + }, + { + "cover": "false", + "extraMap": { + "matchExpression": "false" + }, + "fileId": "1531208473619835603", + "height": "1440", + "status": "1", + "thumbnail": "//img.alicdn.com/imgextra/i2/4611686018427383472/O1CN01806PHJ1p6wxqpKuo7_!!4611686018427383472-0-rate.jpg", + "width": "1080" + }, + { + "cover": "false", + "extraMap": { + "matchExpression": "false" + }, + "fileId": "1531208472198211596", + "height": "1440", + "status": "1", + "thumbnail": "//img.alicdn.com/imgextra/i3/4611686018427383472/O1CN01Q1v7sc1p6wxpH7vSe_!!4611686018427383472-0-rate.jpg", + "width": "1080" + } + ], + "feedPicPathList": [ + "//img.alicdn.com/imgextra/i4/4611686018427383472/O1CN01OYYtyx1p6wxr7aG80_!!4611686018427383472-0-rate.jpg", + "//img.alicdn.com/imgextra/i4/4611686018427383472/O1CN01vY6wPe1p6wxpBa3db_!!4611686018427383472-0-rate.jpg", + "//img.alicdn.com/imgextra/i2/4611686018427383472/O1CN010Q1UNX1p6wxr18uxl_!!4611686018427383472-0-rate.jpg", + "//img.alicdn.com/imgextra/i2/4611686018427383472/O1CN01806PHJ1p6wxqpKuo7_!!4611686018427383472-0-rate.jpg", + "//img.alicdn.com/imgextra/i3/4611686018427383472/O1CN01Q1v7sc1p6wxpH7vSe_!!4611686018427383472-0-rate.jpg" + ], + "feedback": "实物与描述的一样,质量相当好,卖家态度也好,有问必答,发货速度杠杠的,值得购买哦", + "feedbackDate": "2025年6月9日", + "formalBlackUser": "false", + "goldUser": "false", + "hasDetail": "true", + "headFrameUrl": "", + "headPicUrl": "//sns.m.taobao.com/avatar/sns/user/flag/sns_logo?type=taobao&kn=wwc_tb_11&bizCode=taobao_avatar&userFlag=RAzN83923zmuym8oqcXSSMSQq8SVJLsPWnzEWT1CT43XxX5CB1Qz8K4sXWJpQobMthrBBNnfiYP1yau4ihe1yGSsXJyySvrTYDWiyCaCqSPbLS1B9nQgwSw3ZbMi", + "id": "1274470848707", + "interactInfo": { + "alreadyDislike": "false", + "alreadyLike": "false", + "commentCount": "0", + "enableComment": "true", + "enableLike": "true", + "enableShare": "true", + "likeCount": "12", + "readCount": "402" + }, + "own": "false", + "rateType": "1", + "reduceUserNick": "吉**8", + "repeatBusiness": "false", + "reply": "亲~ 您好 !非常感谢您的支持,我们会再接再厉,做得更加好的! 欢迎您再次光临,祝您和家人幸福一生! 加入会员领取更多专享福利呦~", + "share": { + "detailShareUrl": "https://web.m.taobao.com/app/mtb-guang/showcase/transfer?target_page=rate_detail&target_h5=https%3A%2F%2Fh5.m.taobao.com%2Fuser_comment%2Fcomment_detail.html&rateId=1274470848707", + "detailUrl": "//h5.m.taobao.com/tnode/index.htm?tnode=page_ratedetail%40ugc%3fpangesture%3dpullrightexit%26navbarHide%3dtrue%26immersive%3dtrue&rateId=1274470848707&headPic=http%3A%2F%2Fsns.m.taobao.com%2Favatar%2Fsns%2Fuser%2Fflag%2Fsns_logo%3Ftype%3Dtaobao%26kn%3Dwwc_tb_11%26bizCode%3Dtaobao_avatar%26userFlag%3DRAzN83923zmuym8oqcXSSMSQq8SVJLsPWnzEWT1CT43XxX5CB1Qz8K4sXWJpQobMthrBBNnfiYP1yau4ihe1yGSsXJyySvrTYDWiyCaCqSPbLS1B9nQgwSw3ZbMi", + "shareCover": "//img.alicdn.com/imgextra/i4/4611686018427383472/O1CN01OYYtyx1p6wxr7aG80_!!4611686018427383472-0-rate.jpg", + "shareSupport": "true", + "shareURL": "//h5.m.taobao.com/user_comment/comment_detail.html?rateId=1274470848707&sellerId=MMmIyvC*HP0RIMHgbvGQbOH8WM8leOFcWPC8SOHkWPFxT&isEncode=true" + }, + "skuId": "5767407060270", + "skuMap": { + "颜色分类": "28m³/min 钢琴黑" + }, + "skuValueStr": "28m³/min 钢琴黑", + "skuVids": "32888575647", + "structTagEndSize": "40", + "topRate": "0", + "userId": "0", + "userIndexURL": "", + "userMark": "tZaKYv752N/A2nbyOeZU6MDh8Tic5zTSFgm6esaj6qU=", + "userNick": "吉**8", + "userStar": "9", + "userStarPic": "https://img.alicdn.com/imgextra/i3/O1CN01PIYxrZ22FGrmiDphN_!!6000000007090-2-tps-92-45.png", + "userTagList": [ + { + "extraInfo": { + "level": "11" + }, + "tagCode": "credit", + "tagDesc": "信用等级", + "tagIconHeight": "27", + "tagIconPic": "https://img.alicdn.com/imgextra/i3/O1CN01PIYxrZ22FGrmiDphN_!!6000000007090-2-tps-92-45.png", + "tagIconWidth": "53" + } + ], + "video": { + "cloudVideoUrl": "//cloud.video.taobao.com/play/u/null/p/1/d/hd/e/6/t/1/522515084751.mp4", + "coverUrl": "//img.alicdn.com/imgextra/i1/O1CN01YdZfgo1p6wxqNN0bj_!!4611686018427383472-0-tbbala.jpg", + "extraMap": { + "matchExpression": "false" + }, + "height": "1280", + "sourceVideoUrl": "//pingjia.alicdn.com/aus/wantu_pingjia/1041299113/e80f97bb738d4f5eb345034400354425.mp4", + "status": "1", + "videoId": "522515084751", + "videoVoice": "true", + "width": "720" + } + }, + { + "addCartUrl": "https://sku.taobao.com/index.htm?itemId=907297542617&bottomMode=ADDCART&asyncApiType=normalBuy&skuId=5767407060270", + "allowComment": "true", + "allowInteract": "true", + "allowNote": "false", + "allowReportReview": "true", + "allowReportUser": "false", + "allowShieldReview": "false", + "allowShieldUser": "false", + "annoy": "1", + "auctionNumId": "907297542617", + "auctionTitle": "新品海尔抽油烟机大嘴C61Pro变频大吸力顶侧双吸家用厨房吸油烟机", + "copy": "false", + "createTime": "5月15日", + "createTimeInterval": "1个月前", + "creditLevel": "10", + "decision": { + "decisionNode": [ + { + "highLight": "false", + "title": "吸油很好" + }, + { + "highLight": "false", + "title": "安装很快" + } + ], + "title": "商品性能及服务" + }, + "extraInfoMap": { + "userGrade": "5", + "report_url": "https://market.m.taobao.com/app/msd/buyer-aqcenter/report.html?bizSource=taobao&from=ItemComment&subjectType=ITEM_RATE&subjectId=1272005662504#/index" + }, + "feedPicList": [ + { + "cover": "false", + "extraMap": { + "matchExpression": "false" + }, + "fileId": "1914908449746332835", + "height": "3456", + "status": "1", + "thumbnail": "//img.alicdn.com/imgextra/i4/4611686018427379725/O1CN01D5yBlJ2HSIf6QtYyh_!!4611686018427379725-0-rate.jpg", + "width": "4608" + }, + { + "cover": "false", + "extraMap": { + "matchExpression": "false" + }, + "fileId": "1914908449789613282", + "height": "3456", + "status": "1", + "thumbnail": "//img.alicdn.com/imgextra/i2/4611686018427379725/O1CN01vHAB982HSIf6TpACQ_!!4611686018427379725-0-rate.jpg", + "width": "4608" + }, + { + "cover": "false", + "extraMap": { + "matchExpression": "false" + }, + "fileId": "1914908449112905700", + "height": "4608", + "status": "1", + "thumbnail": "//img.alicdn.com/imgextra/i4/4611686018427379725/O1CN015bEe4M2HSIf5k1le0_!!4611686018427379725-0-rate.jpg", + "width": "3456" + }, + { + "cover": "false", + "extraMap": { + "matchExpression": "false" + }, + "fileId": "1914908450224622884", + "height": "4608", + "status": "1", + "thumbnail": "//img.alicdn.com/imgextra/i1/4611686018427379725/O1CN01VftmMa2HSIf6xGQ4K_!!4611686018427379725-0-rate.jpg", + "width": "3456" + }, + { + "cover": "false", + "extraMap": { + "matchExpression": "false" + }, + "fileId": "1914908448783767878", + "height": "3456", + "status": "1", + "thumbnail": "//img.alicdn.com/imgextra/i3/4611686018427379725/O1CN01N0uZYg2HSIf5NkjrS_!!4611686018427379725-0-rate.jpg", + "width": "4608" + } + ], + "feedPicPathList": [ + "//img.alicdn.com/imgextra/i4/4611686018427379725/O1CN01D5yBlJ2HSIf6QtYyh_!!4611686018427379725-0-rate.jpg", + "//img.alicdn.com/imgextra/i2/4611686018427379725/O1CN01vHAB982HSIf6TpACQ_!!4611686018427379725-0-rate.jpg", + "//img.alicdn.com/imgextra/i4/4611686018427379725/O1CN015bEe4M2HSIf5k1le0_!!4611686018427379725-0-rate.jpg", + "//img.alicdn.com/imgextra/i1/4611686018427379725/O1CN01VftmMa2HSIf6xGQ4K_!!4611686018427379725-0-rate.jpg", + "//img.alicdn.com/imgextra/i3/4611686018427379725/O1CN01N0uZYg2HSIf5NkjrS_!!4611686018427379725-0-rate.jpg" + ], + "feedback": "是否易清洗:自带热熔洗功能很方便,还可以与灶具联动使用 声音大小:声音偏大,但是对于28m³的吸力来说已经很不错了 配送准时:配送时间很快!比预计时间还要早一天 吸力和风压都很给力,并且是顶侧前三吸的性价比超高!!有手势功能,还可以连接手机使用,操作简单方便,功能也很全面!!! ", + "feedbackDate": "2025年5月15日", + "formalBlackUser": "false", + "goldUser": "false", + "hasDetail": "true", + "headFrameUrl": "", + "headPicUrl": "//img.alicdn.com/imgextra/i4/O1CN01GbZNxl26Vzotrjqli_!!6000000007668-2-tps-160-160.png", + "id": "1272005662504", + "interactInfo": { + "alreadyDislike": "false", + "alreadyLike": "false", + "commentCount": "0", + "enableComment": "true", + "enableLike": "true", + "enableShare": "true", + "likeCount": "11", + "readCount": "869" + }, + "own": "false", + "rateType": "1", + "reduceUserNick": "喂**枫", + "repeatBusiness": "true", + "reply": "您好,我们的努力和付出都只为了您能享受宝贝所带来的便利,从而有更多的时间品味生活的美好,海尔官方旗舰店祝您生活愉快~加入会员领取更多专享福利呦~", + "share": { + "detailShareUrl": "https://web.m.taobao.com/app/mtb-guang/showcase/transfer?target_page=rate_detail&target_h5=https%3A%2F%2Fh5.m.taobao.com%2Fuser_comment%2Fcomment_detail.html&rateId=1272005662504", + "detailUrl": "//h5.m.taobao.com/tnode/index.htm?tnode=page_ratedetail%40ugc%3fpangesture%3dpullrightexit%26navbarHide%3dtrue%26immersive%3dtrue&rateId=1272005662504&headPic=https%3A%2F%2Fimg.alicdn.com%2Fimgextra%2Fi4%2FO1CN01GbZNxl26Vzotrjqli_%21%216000000007668-2-tps-160-160.png", + "shareCover": "//img.alicdn.com/imgextra/i4/4611686018427379725/O1CN01D5yBlJ2HSIf6QtYyh_!!4611686018427379725-0-rate.jpg", + "shareSupport": "true", + "shareURL": "//h5.m.taobao.com/user_comment/comment_detail.html?rateId=1272005662504&sellerId=MMmIyvC*HP0RIMHgbvGQbOH8WM8leOFcWPC8SOHkWPFxT&isEncode=true" + }, + "skuId": "5767407060270", + "skuMap": { + "颜色分类": "28m³/min 钢琴黑" + }, + "skuValueStr": "28m³/min 钢琴黑", + "skuVids": "32888575647", + "structTagEndSize": "0", + "structTagList": [ + { + "id": "1", + "title": "是否易清洗", + "content": "自带热熔洗功能很方便,还可以与灶具联动使用" + }, + { + "id": "2", + "title": "声音大小", + "content": "声音偏大,但是对于28m³的吸力来说已经很不错了" + }, + { + "id": "3", + "title": "配送准时", + "content": "配送时间很快!比预计时间还要早一天\n吸力和风压都很给力,并且是顶侧前三吸的性价比超高!!有手势功能,还可以连接手机使用,操作简单方便,功能也很全面!!!" + } + ], + "topRate": "0", + "userId": "0", + "userIndexURL": "", + "userMark": "HBN7WgIRWp+E8z5QSUjWuKL3efErYBpKEDiWg29Y/NQ=", + "userNick": "喂**枫", + "userStar": "8", + "userStarPic": "https://img.alicdn.com/imgextra/i4/O1CN019QZnaG1U1LtUAPn6e_!!6000000002457-2-tps-92-45.png", + "userTagList": [ + { + "extraInfo": { + "level": "10" + }, + "tagCode": "credit", + "tagDesc": "信用等级", + "tagIconHeight": "27", + "tagIconPic": "https://img.alicdn.com/imgextra/i4/O1CN019QZnaG1U1LtUAPn6e_!!6000000002457-2-tps-92-45.png", + "tagIconWidth": "53" + } + ] + }, + { + "addCartUrl": "https://sku.taobao.com/index.htm?itemId=907297542617&bottomMode=ADDCART&asyncApiType=normalBuy&skuId=5767407060270", + "allowComment": "true", + "allowInteract": "true", + "allowNote": "false", + "allowReportReview": "true", + "allowReportUser": "false", + "allowShieldReview": "false", + "allowShieldUser": "false", + "annoy": "0", + "auctionNumId": "907297542617", + "auctionTitle": "新品海尔抽油烟机大嘴C61Pro变频大吸力顶侧双吸家用厨房吸油烟机", + "copy": "false", + "createTime": "5月22日", + "createTimeInterval": "1个月前", + "creditLevel": "11", + "decision": { + "decisionNode": [ + { + "highLight": "false", + "title": "吸油很好" + }, + { + "highLight": "false", + "title": "安装很快" + } + ], + "title": "商品性能及服务" + }, + "extraInfoMap": { + "userGrade": "5", + "report_url": "https://market.m.taobao.com/app/msd/buyer-aqcenter/report.html?bizSource=taobao&from=ItemComment&subjectType=ITEM_RATE&subjectId=1272809967032#/index" + }, + "feedPicList": [ + { + "cover": "false", + "extraMap": { + "matchExpression": "false" + }, + "fileId": "1407908457308863946", + "height": "4096", + "status": "1", + "thumbnail": "//img.alicdn.com/imgextra/i3/4611686018427385951/O1CN01ZdsKaB1g0Ebv4NO7G_!!4611686018427385951-0-rate.jpg", + "width": "2304" + }, + { + "cover": "false", + "extraMap": { + "matchExpression": "false" + }, + "fileId": "1407908456061803496", + "height": "2304", + "status": "1", + "thumbnail": "//img.alicdn.com/imgextra/i3/4611686018427385951/O1CN01WrqBU81g0Ebthyqj2_!!4611686018427385951-0-rate.jpg", + "width": "4096" + }, + { + "cover": "false", + "extraMap": { + "matchExpression": "false" + }, + "fileId": "1407908456159428212", + "height": "2304", + "status": "1", + "thumbnail": "//img.alicdn.com/imgextra/i4/4611686018427385951/O1CN01fpvch91g0EbtoaTNE_!!4611686018427385951-0-rate.jpg", + "width": "4096" + }, + { + "cover": "false", + "extraMap": { + "matchExpression": "false" + }, + "fileId": "1407908456568780738", + "height": "1440", + "status": "1", + "thumbnail": "//img.alicdn.com/imgextra/i4/4611686018427385951/O1CN01EGwpsv1g0EbuGI4fK_!!4611686018427385951-0-rate.jpg", + "width": "1080" + } + ], + "feedPicPathList": [ + "//img.alicdn.com/imgextra/i3/4611686018427385951/O1CN01ZdsKaB1g0Ebv4NO7G_!!4611686018427385951-0-rate.jpg", + "//img.alicdn.com/imgextra/i3/4611686018427385951/O1CN01WrqBU81g0Ebthyqj2_!!4611686018427385951-0-rate.jpg", + "//img.alicdn.com/imgextra/i4/4611686018427385951/O1CN01fpvch91g0EbtoaTNE_!!4611686018427385951-0-rate.jpg", + "//img.alicdn.com/imgextra/i4/4611686018427385951/O1CN01EGwpsv1g0EbuGI4fK_!!4611686018427385951-0-rate.jpg" + ], + "feedback": "配送准时:准时 对比了好久,选的大嘴巴c61pro,吸力大、顶侧双吸、颜值高,上一个用的就是海尔用了8年多,现在光荣退休。 ", + "feedbackDate": "2025年5月22日", + "formalBlackUser": "false", + "goldUser": "false", + "hasDetail": "true", + "headFrameUrl": "", + "headPicUrl": "//sns.m.taobao.com/avatar/sns/user/flag/sns_logo?type=taobao&kn=wwc_tb_11&bizCode=taobao_avatar&userFlag=RAzN83923zmuym8oqcXSSMSQq8SVJLsPWnzEXksHFfPmxVeJBEvS4hHkqb3vuoGSrbXTCZQeAejXeXMyvsZSbyhMJ7cy9iHk5uDRFWB8jXYLsyS73neuUYLvzeQA", + "id": "1272809967032", + "interactInfo": { + "alreadyDislike": "false", + "alreadyLike": "false", + "commentCount": "3", + "enableComment": "true", + "enableLike": "true", + "enableShare": "true", + "likeCount": "27", + "readCount": "825" + }, + "own": "false", + "rateType": "1", + "reduceUserNick": "d**y", + "repeatBusiness": "true", + "reply": "您的评价就像一首旋律让我的生命充满着动力,您的支持,就如阳光,温暖了我的心窝~感谢您选购的产品,海尔官方旗舰店祝您生活美满!加入会员领取更多专享福利呦~", + "share": { + "detailShareUrl": "https://web.m.taobao.com/app/mtb-guang/showcase/transfer?target_page=rate_detail&target_h5=https%3A%2F%2Fh5.m.taobao.com%2Fuser_comment%2Fcomment_detail.html&rateId=1272809967032", + "detailUrl": "//h5.m.taobao.com/tnode/index.htm?tnode=page_ratedetail%40ugc%3fpangesture%3dpullrightexit%26navbarHide%3dtrue%26immersive%3dtrue&rateId=1272809967032&headPic=http%3A%2F%2Fsns.m.taobao.com%2Favatar%2Fsns%2Fuser%2Fflag%2Fsns_logo%3Ftype%3Dtaobao%26kn%3Dwwc_tb_11%26bizCode%3Dtaobao_avatar%26userFlag%3DRAzN83923zmuym8oqcXSSMSQq8SVJLsPWnzEXksHFfPmxVeJBEvS4hHkqb3vuoGSrbXTCZQeAejXeXMyvsZSbyhMJ7cy9iHk5uDRFWB8jXYLsyS73neuUYLvzeQA", + "shareCover": "//img.alicdn.com/imgextra/i3/4611686018427385951/O1CN01ZdsKaB1g0Ebv4NO7G_!!4611686018427385951-0-rate.jpg", + "shareSupport": "true", + "shareURL": "//h5.m.taobao.com/user_comment/comment_detail.html?rateId=1272809967032&sellerId=MMmIyvC*HP0RIMHgbvGQbOH8WM8leOFcWPC8SOHkWPFxT&isEncode=true" + }, + "skuId": "5767407060270", + "skuMap": { + "颜色分类": "28m³/min 钢琴黑" + }, + "skuValueStr": "28m³/min 钢琴黑", + "skuVids": "32888575647", + "structTagEndSize": "0", + "structTagList": [ + { + "id": "3", + "title": "配送准时", + "content": "准时\n对比了好久,选的大嘴巴c61pro,吸力大、顶侧双吸、颜值高,上一个用的就是海尔用了8年多,现在光荣退休。\n" + } + ], + "topRate": "0", + "userId": "0", + "userIndexURL": "", + "userMark": "aHp/nE8iquWUMXDUskXtvILCenUWUuYQQFdCRQkxPFk=", + "userNick": "d**y", + "userStar": "9", + "userStarPic": "https://img.alicdn.com/imgextra/i3/O1CN01PIYxrZ22FGrmiDphN_!!6000000007090-2-tps-92-45.png", + "userTagList": [ + { + "extraInfo": { + "level": "11" + }, + "tagCode": "credit", + "tagDesc": "信用等级", + "tagIconHeight": "27", + "tagIconPic": "https://img.alicdn.com/imgextra/i3/O1CN01PIYxrZ22FGrmiDphN_!!6000000007090-2-tps-92-45.png", + "tagIconWidth": "53" + } + ], + "video": { + "cloudVideoUrl": "//cloud.video.taobao.com/play/u/null/p/1/d/hd/e/6/t/1/520154936521.mp4", + "coverUrl": "//img.alicdn.com/imgextra/i1/O1CN01GVC6rx1g0EbswQ1BR_!!4611686018427385951-0-tbbala.jpg", + "extraMap": { + "matchExpression": "false" + }, + "height": "1280", + "sourceVideoUrl": "//pingjia.alicdn.com/aus/wantu_pingjia/878071531/e6c36410b054496ea5531cf3f4a99cc3.mp4", + "status": "1", + "videoId": "520154936521", + "videoVoice": "true", + "width": "720" + } + }, + { + "addCartUrl": "https://sku.taobao.com/index.htm?itemId=907297542617&bottomMode=ADDCART&asyncApiType=normalBuy&skuId=5767407060270", + "allowComment": "true", + "allowInteract": "true", + "allowNote": "false", + "allowReportReview": "true", + "allowReportUser": "false", + "allowShieldReview": "false", + "allowShieldUser": "false", + "annoy": "1", + "auctionNumId": "907297542617", + "auctionTitle": "新品海尔抽油烟机大嘴C61Pro变频大吸力顶侧双吸家用厨房吸油烟机", + "copy": "false", + "createTime": "6月29日", + "createTimeInterval": "6天前", + "creditLevel": "11", + "decision": { + "decisionNode": [ + { + "highLight": "false", + "title": "安装很快" + }, + { + "highLight": "false", + "title": "吸油很好" + } + ], + "title": "商品性能及服务" + }, + "extraInfoMap": { + "userGrade": "5", + "report_url": "https://market.m.taobao.com/app/msd/buyer-aqcenter/report.html?bizSource=taobao&from=ItemComment&subjectType=ITEM_RATE&subjectId=1276603410464#/index" + }, + "feedPicList": [ + { + "cover": "false", + "extraMap": { + "matchExpression": "false" + }, + "fileId": "1861108495840671415", + "height": "4284", + "status": "1", + "thumbnail": "//img.alicdn.com/imgextra/i4/4611686018427386003/O1CN01e72TxF2DTtakCdFPb_!!4611686018427386003-0-tbbala.jpg", + "width": "5712" + }, + { + "cover": "false", + "extraMap": { + "matchExpression": "false" + }, + "fileId": "1861108493369251659", + "height": "5712", + "status": "1", + "thumbnail": "//img.alicdn.com/imgextra/i2/4611686018427386003/O1CN01GXPDjV2DTtahVNQEd_!!4611686018427386003-0-tbbala.jpg", + "width": "4284" + } + ], + "feedPicPathList": [ + "//img.alicdn.com/imgextra/i4/4611686018427386003/O1CN01e72TxF2DTtakCdFPb_!!4611686018427386003-0-tbbala.jpg", + "//img.alicdn.com/imgextra/i2/4611686018427386003/O1CN01GXPDjV2DTtahVNQEd_!!4611686018427386003-0-tbbala.jpg" + ], + "feedback": "配送准时:第二天就发货了 送货前师傅会打电话确认送货时间,还没安装 因为家里没弄好还 不过海尔是大品牌售后应该是没问题的 ", + "feedbackDate": "2025年6月29日", + "formalBlackUser": "false", + "goldUser": "false", + "hasDetail": "true", + "headFrameUrl": "", + "headPicUrl": "//img.alicdn.com/imgextra/i4/O1CN01GbZNxl26Vzotrjqli_!!6000000007668-2-tps-160-160.png", + "id": "1276603410464", + "interactInfo": { + "alreadyDislike": "false", + "alreadyLike": "false", + "commentCount": "0", + "enableComment": "true", + "enableLike": "true", + "enableShare": "true", + "likeCount": "0", + "readCount": "3" + }, + "own": "false", + "rateType": "1", + "reduceUserNick": "t**0", + "repeatBusiness": "false", + "reply": "亲,我们的质量杠杠的,您就妥妥的用吧。期待亲亲使用后来分享心得哦,您在后续使用过程中遇到任何疑问,都可以旺旺联系我们的在线客服,我们都会为您一一解答,祝您生活愉快。【海尔官方旗舰店】加入会员领取更多专享福利呦~", + "share": { + "detailShareUrl": "https://web.m.taobao.com/app/mtb-guang/showcase/transfer?target_page=rate_detail&target_h5=https%3A%2F%2Fh5.m.taobao.com%2Fuser_comment%2Fcomment_detail.html&rateId=1276603410464", + "detailUrl": "//h5.m.taobao.com/tnode/index.htm?tnode=page_ratedetail%40ugc%3fpangesture%3dpullrightexit%26navbarHide%3dtrue%26immersive%3dtrue&rateId=1276603410464&headPic=https%3A%2F%2Fimg.alicdn.com%2Fimgextra%2Fi4%2FO1CN01GbZNxl26Vzotrjqli_%21%216000000007668-2-tps-160-160.png", + "shareCover": "//img.alicdn.com/imgextra/i4/4611686018427386003/O1CN01e72TxF2DTtakCdFPb_!!4611686018427386003-0-tbbala.jpg", + "shareSupport": "true", + "shareURL": "//h5.m.taobao.com/user_comment/comment_detail.html?rateId=1276603410464&sellerId=MMmIyvC*HP0RIMHgbvGQbOH8WM8leOFcWPC8SOHkWPFxT&isEncode=true" + }, + "skuId": "5767407060270", + "skuMap": { + "颜色分类": "28m³/min 钢琴黑" + }, + "skuValueStr": "28m³/min 钢琴黑", + "skuVids": "32888575647", + "structTagEndSize": "0", + "structTagList": [ + { + "id": "3", + "title": "配送准时", + "content": "第二天就发货了 送货前师傅会打电话确认送货时间,还没安装 因为家里没弄好还 不过海尔是大品牌售后应该是没问题的" + } + ], + "topRate": "0", + "userId": "0", + "userIndexURL": "", + "userMark": "6G86p6a68IzAHpY0Xbt0g3YB2o+QYUro0xEPz4CleFU=", + "userNick": "t**0", + "userStar": "9", + "userStarPic": "https://img.alicdn.com/imgextra/i3/O1CN01PIYxrZ22FGrmiDphN_!!6000000007090-2-tps-92-45.png", + "userTagList": [ + { + "extraInfo": { + "level": "11" + }, + "tagCode": "credit", + "tagDesc": "信用等级", + "tagIconHeight": "27", + "tagIconPic": "https://img.alicdn.com/imgextra/i3/O1CN01PIYxrZ22FGrmiDphN_!!6000000007090-2-tps-92-45.png", + "tagIconWidth": "53" + } + ] + }, + { + "addCartUrl": "https://sku.taobao.com/index.htm?itemId=907297542617&bottomMode=ADDCART&asyncApiType=normalBuy&skuId=5937022766250", + "allowComment": "true", + "allowInteract": "true", + "allowNote": "false", + "allowReportReview": "true", + "allowReportUser": "false", + "allowShieldReview": "false", + "allowShieldUser": "false", + "annoy": "1", + "auctionNumId": "907297542617", + "auctionTitle": "新品海尔抽油烟机大嘴C61Pro变频大吸力顶侧双吸家用厨房吸油烟机", + "copy": "false", + "createTime": "6月24日", + "createTimeInterval": "1周前", + "creditLevel": "10", + "extraInfoMap": { + "userGrade": "5", + "report_url": "https://market.m.taobao.com/app/msd/buyer-aqcenter/report.html?bizSource=taobao&from=ItemComment&subjectType=ITEM_RATE&subjectId=1276039249825#/index" + }, + "feedPicList": [ + { + "cover": "false", + "extraMap": { + "matchExpression": "false" + }, + "fileId": "1427308489613628760", + "height": "720", + "status": "1", + "thumbnail": "//img.alicdn.com/imgextra/i1/4611686018427383985/O1CN01nM5FMR1hR5SMq9Pse_!!4611686018427383985-0-tmallfun.jpg", + "width": "536" + }, + { + "cover": "false", + "extraMap": { + "matchExpression": "false" + }, + "fileId": "1269308487722098430", + "height": "720", + "status": "1", + "thumbnail": "//img.alicdn.com/imgextra/i2/4611686018427382405/O1CN01dpce9C1VlRfjM8S5O_!!4611686018427382405-0-tmallfun.jpg", + "width": "536" + }, + { + "cover": "false", + "extraMap": { + "matchExpression": "false" + }, + "fileId": "1604108487721874874", + "height": "720", + "status": "1", + "thumbnail": "//img.alicdn.com/imgextra/i3/4611686018427385753/O1CN01cnGyPL1uUphTqGcJe_!!4611686018427385753-0-tmallfun.jpg", + "width": "408" + }, + { + "cover": "false", + "extraMap": { + "matchExpression": "false" + }, + "fileId": "1149408488775223429", + "height": "720", + "status": "1", + "thumbnail": "//img.alicdn.com/imgextra/i1/4611686018427381206/O1CN01JBSClt1MuIn0lUzsz_!!4611686018427381206-0-tmallfun.jpg", + "width": "408" + } + ], + "feedPicPathList": [ + "//img.alicdn.com/imgextra/i1/4611686018427383985/O1CN01nM5FMR1hR5SMq9Pse_!!4611686018427383985-0-tmallfun.jpg", + "//img.alicdn.com/imgextra/i2/4611686018427382405/O1CN01dpce9C1VlRfjM8S5O_!!4611686018427382405-0-tmallfun.jpg", + "//img.alicdn.com/imgextra/i3/4611686018427385753/O1CN01cnGyPL1uUphTqGcJe_!!4611686018427385753-0-tmallfun.jpg", + "//img.alicdn.com/imgextra/i1/4611686018427381206/O1CN01JBSClt1MuIn0lUzsz_!!4611686018427381206-0-tmallfun.jpg" + ], + "feedback": "以前的抽油烟机坏了,这次趁活动买了一个。以前那个总跑烟,现在这个海尔的吸力大,不跑烟,噪音小。很满意", + "feedbackDate": "2025年6月24日", + "formalBlackUser": "false", + "goldUser": "false", + "hasDetail": "true", + "headFrameUrl": "", + "headPicUrl": "//img.alicdn.com/imgextra/i4/O1CN01GbZNxl26Vzotrjqli_!!6000000007668-2-tps-160-160.png", + "id": "1276039249825", + "interactInfo": { + "alreadyDislike": "false", + "alreadyLike": "false", + "commentCount": "0", + "enableComment": "true", + "enableLike": "true", + "enableShare": "true", + "likeCount": "0", + "readCount": "33" + }, + "own": "false", + "rateType": "1", + "reduceUserNick": "年**逼", + "repeatBusiness": "false", + "reply": "总有一个笑脸,是为我们而绽放;总有一份遇见,唯美了整个曾经;因为您的喜欢,温暖了我们的整颗心,感谢您的惠顾,愿您幸福快乐~加入会员领取更多专享福利呦~", + "share": { + "detailShareUrl": "https://web.m.taobao.com/app/mtb-guang/showcase/transfer?target_page=rate_detail&target_h5=https%3A%2F%2Fh5.m.taobao.com%2Fuser_comment%2Fcomment_detail.html&rateId=1276039249825", + "detailUrl": "//h5.m.taobao.com/tnode/index.htm?tnode=page_ratedetail%40ugc%3fpangesture%3dpullrightexit%26navbarHide%3dtrue%26immersive%3dtrue&rateId=1276039249825&headPic=https%3A%2F%2Fimg.alicdn.com%2Fimgextra%2Fi4%2FO1CN01GbZNxl26Vzotrjqli_%21%216000000007668-2-tps-160-160.png", + "shareCover": "//img.alicdn.com/imgextra/i1/4611686018427383985/O1CN01nM5FMR1hR5SMq9Pse_!!4611686018427383985-0-tmallfun.jpg", + "shareSupport": "true", + "shareURL": "//h5.m.taobao.com/user_comment/comment_detail.html?rateId=1276039249825&sellerId=MMmIyvC*HP0RIMHgbvGQbOH8WM8leOFcWPC8SOHkWPFxT&isEncode=true" + }, + "skuId": "5937022766250", + "skuMap": { + "颜色分类": "25m³/min 钢琴黑" + }, + "skuValueStr": "25m³/min 钢琴黑", + "skuVids": "36004921502", + "structTagEndSize": "0", + "topRate": "0", + "userId": "0", + "userIndexURL": "", + "userMark": "FDQOo5kEwCBlDIjyf8dKhMxFCE1UyM8ug8Mue290VbE=", + "userNick": "年**逼", + "userStar": "8", + "userStarPic": "https://img.alicdn.com/imgextra/i4/O1CN019QZnaG1U1LtUAPn6e_!!6000000002457-2-tps-92-45.png", + "userTagList": [ + { + "extraInfo": { + "level": "10" + }, + "tagCode": "credit", + "tagDesc": "信用等级", + "tagIconHeight": "27", + "tagIconPic": "https://img.alicdn.com/imgextra/i4/O1CN019QZnaG1U1LtUAPn6e_!!6000000002457-2-tps-92-45.png", + "tagIconWidth": "53" + } + ] + }, + { + "addCartUrl": "https://sku.taobao.com/index.htm?itemId=907297542617&bottomMode=ADDCART&asyncApiType=normalBuy&skuId=5767407060270", + "allowComment": "true", + "allowInteract": "true", + "allowNote": "false", + "allowReportReview": "true", + "allowReportUser": "false", + "allowShieldReview": "false", + "allowShieldUser": "false", + "annoy": "1", + "auctionNumId": "907297542617", + "auctionTitle": "新品海尔抽油烟机大嘴C61Pro变频大吸力顶侧双吸家用厨房吸油烟机", + "copy": "false", + "createTime": "5月19日", + "createTimeInterval": "1个月前", + "creditLevel": "8", + "extraInfoMap": { + "userGrade": "5", + "report_url": "https://market.m.taobao.com/app/msd/buyer-aqcenter/report.html?bizSource=taobao&from=ItemComment&subjectType=ITEM_RATE&subjectId=1272392174426#/index" + }, + "feedPicList": [ + { + "cover": "false", + "extraMap": { + "matchExpression": "false" + }, + "fileId": "1634208451189907327", + "height": "1072", + "status": "1", + "thumbnail": "//img.alicdn.com/imgextra/i4/4611686018427382902/O1CN01EBrEnR1wiguDUs1SZ_!!4611686018427382902-0-rate.jpg", + "width": "1438" + }, + { + "cover": "false", + "extraMap": { + "matchExpression": "false" + }, + "fileId": "1634208452796276501", + "height": "1075", + "status": "1", + "thumbnail": "//img.alicdn.com/imgextra/i3/4611686018427382902/O1CN01DISGzP1wiguFFaBSn_!!4611686018427382902-0-rate.jpg", + "width": "1439" + }, + { + "cover": "false", + "extraMap": { + "matchExpression": "false" + }, + "fileId": "1634208446667664779", + "height": "1079", + "status": "1", + "thumbnail": "//img.alicdn.com/imgextra/i3/4611686018427382902/O1CN01oUiuvp1wigu8Yp9ad_!!4611686018427382902-0-rate.jpg", + "width": "1440" + } + ], + "feedPicPathList": [ + "//img.alicdn.com/imgextra/i4/4611686018427382902/O1CN01EBrEnR1wiguDUs1SZ_!!4611686018427382902-0-rate.jpg", + "//img.alicdn.com/imgextra/i3/4611686018427382902/O1CN01DISGzP1wiguFFaBSn_!!4611686018427382902-0-rate.jpg", + "//img.alicdn.com/imgextra/i3/4611686018427382902/O1CN01oUiuvp1wigu8Yp9ad_!!4611686018427382902-0-rate.jpg" + ], + "feedback": "烟机已经收到了,顶侧三吸的还是,安装后机器质感非常好,特别显高档,还一起买了个定时灶,搭配着确实不错,而且大品牌的售后也更有保障,值得信赖", + "feedbackDate": "2025年5月19日", + "formalBlackUser": "false", + "goldUser": "false", + "hasDetail": "true", + "headFrameUrl": "", + "headPicUrl": "//img.alicdn.com/imgextra/i4/O1CN01GbZNxl26Vzotrjqli_!!6000000007668-2-tps-160-160.png", + "id": "1272392174426", + "interactInfo": { + "alreadyDislike": "false", + "alreadyLike": "false", + "commentCount": "0", + "enableComment": "true", + "enableLike": "true", + "enableShare": "true", + "likeCount": "3", + "readCount": "369" + }, + "own": "false", + "rateType": "1", + "reduceUserNick": "看**客", + "repeatBusiness": "true", + "reply": "亲的句句认可和肯定,真实的话语,让我们不由间又多了一份信心。努力让香香甜甜的味道飘到千家万户去呢。托白云捎去海尔的真心诚意.祝您生活愉快哒。加入会员领取更多专享福利呦~", + "share": { + "detailShareUrl": "https://web.m.taobao.com/app/mtb-guang/showcase/transfer?target_page=rate_detail&target_h5=https%3A%2F%2Fh5.m.taobao.com%2Fuser_comment%2Fcomment_detail.html&rateId=1272392174426", + "detailUrl": "//h5.m.taobao.com/tnode/index.htm?tnode=page_ratedetail%40ugc%3fpangesture%3dpullrightexit%26navbarHide%3dtrue%26immersive%3dtrue&rateId=1272392174426&headPic=https%3A%2F%2Fimg.alicdn.com%2Fimgextra%2Fi4%2FO1CN01GbZNxl26Vzotrjqli_%21%216000000007668-2-tps-160-160.png", + "shareCover": "//img.alicdn.com/imgextra/i4/4611686018427382902/O1CN01EBrEnR1wiguDUs1SZ_!!4611686018427382902-0-rate.jpg", + "shareSupport": "true", + "shareURL": "//h5.m.taobao.com/user_comment/comment_detail.html?rateId=1272392174426&sellerId=MMmIyvC*HP0RIMHgbvGQbOH8WM8leOFcWPC8SOHkWPFxT&isEncode=true" + }, + "skuId": "5767407060270", + "skuMap": { + "颜色分类": "28m³/min 钢琴黑" + }, + "skuValueStr": "28m³/min 钢琴黑", + "skuVids": "32888575647", + "structTagEndSize": "0", + "topRate": "0", + "userId": "0", + "userIndexURL": "", + "userMark": "/yOHdbu8JMPuZmCZC9cmqQ0ABbFY0P/Jyh+jcpkwJ8w=", + "userNick": "看**客", + "userStar": "6", + "userStarPic": "https://img.alicdn.com/imgextra/i3/O1CN01QZTjHW1F4oegDvuEX_!!6000000000434-2-tps-92-45.png", + "userTagList": [ + { + "extraInfo": { + "level": "8" + }, + "tagCode": "credit", + "tagDesc": "信用等级", + "tagIconHeight": "27", + "tagIconPic": "https://img.alicdn.com/imgextra/i3/O1CN01QZTjHW1F4oegDvuEX_!!6000000000434-2-tps-92-45.png", + "tagIconWidth": "53" + } + ] + }, + { + "addCartUrl": "https://sku.taobao.com/index.htm?itemId=907297542617&bottomMode=ADDCART&asyncApiType=normalBuy&skuId=5767407060270", + "allowComment": "true", + "allowInteract": "true", + "allowNote": "false", + "allowReportReview": "true", + "allowReportUser": "false", + "allowShieldReview": "false", + "allowShieldUser": "false", + "annoy": "0", + "auctionNumId": "907297542617", + "auctionTitle": "新品海尔抽油烟机大嘴C61Pro变频大吸力顶侧双吸家用厨房吸油烟机", + "copy": "false", + "createTime": "6月21日", + "createTimeInterval": "2周前", + "creditLevel": "10", + "decision": { + "decisionNode": [ + { + "highLight": "false", + "title": "安装很快" + }, + { + "highLight": "false", + "title": "吸油很好" + } + ], + "title": "商品性能及服务" + }, + "extraInfoMap": { + "userGrade": "5", + "report_url": "https://market.m.taobao.com/app/msd/buyer-aqcenter/report.html?bizSource=taobao&from=ItemComment&subjectType=ITEM_RATE&subjectId=1275700168468#/index" + }, + "feedPicList": [ + { + "cover": "false", + "extraMap": { + "matchExpression": "false" + }, + "fileId": "1024908485715349285", + "height": "2340", + "status": "1", + "thumbnail": "//img.alicdn.com/imgextra/i4/4611686018427386729/O1CN01GvGLGf1Di5gdkXgxx_!!4611686018427386729-0-rate.jpg", + "width": "1080" + }, + { + "cover": "false", + "extraMap": { + "matchExpression": "false" + }, + "fileId": "1024908484722051323", + "height": "1920", + "status": "1", + "thumbnail": "//img.alicdn.com/imgextra/i2/4611686018427386729/O1CN01VrB0471Di5gcfJun5_!!4611686018427386729-0-rate.jpg", + "width": "1080" + }, + { + "cover": "false", + "extraMap": { + "matchExpression": "false" + }, + "fileId": "1024908486084715612", + "height": "1920", + "status": "1", + "thumbnail": "//img.alicdn.com/imgextra/i3/4611686018427386729/O1CN01U5h5Al1Di5ge9XW1M_!!4611686018427386729-0-rate.jpg", + "width": "1080" + } + ], + "feedPicPathList": [ + "//img.alicdn.com/imgextra/i4/4611686018427386729/O1CN01GvGLGf1Di5gdkXgxx_!!4611686018427386729-0-rate.jpg", + "//img.alicdn.com/imgextra/i2/4611686018427386729/O1CN01VrB0471Di5gcfJun5_!!4611686018427386729-0-rate.jpg", + "//img.alicdn.com/imgextra/i3/4611686018427386729/O1CN01U5h5Al1Di5ge9XW1M_!!4611686018427386729-0-rate.jpg" + ], + "feedback": "配送准时:收到就联系安装了,相信海尔的品牌,家里清一色海尔 ", + "feedbackDate": "2025年6月21日", + "formalBlackUser": "false", + "goldUser": "false", + "hasDetail": "true", + "headFrameUrl": "", + "headPicUrl": "//sns.m.taobao.com/avatar/sns/user/flag/sns_logo?type=taobao&kn=wwc_tb_11&bizCode=taobao_avatar&userFlag=RAzN83923zmuymA2Bx76ZwHVZwgDDZLmidog8GeDdk3wedrFo4yveZAV67Mquuq5pf9TV8foF9ABxYUAmXMEj6M32Z7xU6qwKr5MEvvU2kjUJuvr3dXMmiUYhKp7", + "id": "1275700168468", + "interactInfo": { + "alreadyDislike": "false", + "alreadyLike": "false", + "commentCount": "0", + "enableComment": "true", + "enableLike": "true", + "enableShare": "true", + "likeCount": "0", + "readCount": "21" + }, + "own": "false", + "rateType": "1", + "reduceUserNick": "z**t", + "repeatBusiness": "true", + "reply": "赠人玫瑰手有余香,您的好评是对海尔最大的支持与鼓励,也将是我们不断前进的动力,期待再次合作,感谢您的支持,祝您生活愉快~加入会员领取更多专享福利呦~", + "share": { + "detailShareUrl": "https://web.m.taobao.com/app/mtb-guang/showcase/transfer?target_page=rate_detail&target_h5=https%3A%2F%2Fh5.m.taobao.com%2Fuser_comment%2Fcomment_detail.html&rateId=1275700168468", + "detailUrl": "//h5.m.taobao.com/tnode/index.htm?tnode=page_ratedetail%40ugc%3fpangesture%3dpullrightexit%26navbarHide%3dtrue%26immersive%3dtrue&rateId=1275700168468&headPic=http%3A%2F%2Fsns.m.taobao.com%2Favatar%2Fsns%2Fuser%2Fflag%2Fsns_logo%3Ftype%3Dtaobao%26kn%3Dwwc_tb_11%26bizCode%3Dtaobao_avatar%26userFlag%3DRAzN83923zmuymA2Bx76ZwHVZwgDDZLmidog8GeDdk3wedrFo4yveZAV67Mquuq5pf9TV8foF9ABxYUAmXMEj6M32Z7xU6qwKr5MEvvU2kjUJuvr3dXMmiUYhKp7", + "shareCover": "//img.alicdn.com/imgextra/i4/4611686018427386729/O1CN01GvGLGf1Di5gdkXgxx_!!4611686018427386729-0-rate.jpg", + "shareSupport": "true", + "shareURL": "//h5.m.taobao.com/user_comment/comment_detail.html?rateId=1275700168468&sellerId=MMmIyvC*HP0RIMHgbvGQbOH8WM8leOFcWPC8SOHkWPFxT&isEncode=true" + }, + "skuId": "5767407060270", + "skuMap": { + "颜色分类": "28m³/min 钢琴黑" + }, + "skuValueStr": "28m³/min 钢琴黑", + "skuVids": "32888575647", + "structTagEndSize": "0", + "structTagList": [ + { + "id": "3", + "title": "配送准时", + "content": "收到就联系安装了,相信海尔的品牌,家里清一色海尔" + } + ], + "topRate": "0", + "userId": "0", + "userIndexURL": "", + "userMark": "vf23Z8WtXmmMrNRsoB/impqlXssROMzKJ1uvLy3KECo=", + "userNick": "z**t", + "userStar": "8", + "userStarPic": "https://img.alicdn.com/imgextra/i4/O1CN019QZnaG1U1LtUAPn6e_!!6000000002457-2-tps-92-45.png", + "userTagList": [ + { + "extraInfo": { + "level": "10" + }, + "tagCode": "credit", + "tagDesc": "信用等级", + "tagIconHeight": "27", + "tagIconPic": "https://img.alicdn.com/imgextra/i4/O1CN019QZnaG1U1LtUAPn6e_!!6000000002457-2-tps-92-45.png", + "tagIconWidth": "53" + } + ], + "video": { + "cloudVideoUrl": "//cloud.video.taobao.com/play/u/null/p/1/d/hd/e/6/t/1/524180534613.mp4", + "coverUrl": "//img.alicdn.com/imgextra/i2/O1CN01v5w2gg1Di5gc6aIqF_!!4611686018427386729-0-tbbala.jpg", + "extraMap": { + "matchExpression": "false" + }, + "height": "1280", + "sourceVideoUrl": "//pingjia.alicdn.com/aus/wantu_pingjia/1694621546/ddd552320dc7441f833feb50b23af3f4.mp4", + "status": "1", + "videoId": "524180534613", + "videoVoice": "true", + "width": "720" + } + }, + { + "addCartUrl": "https://sku.taobao.com/index.htm?itemId=907297542617&bottomMode=ADDCART&asyncApiType=normalBuy&skuId=5767407060270", + "allowComment": "true", + "allowInteract": "true", + "allowNote": "false", + "allowReportReview": "true", + "allowReportUser": "false", + "allowShieldReview": "false", + "allowShieldUser": "false", + "annoy": "0", + "auctionNumId": "907297542617", + "auctionTitle": "新品海尔抽油烟机大嘴C61Pro变频大吸力顶侧双吸家用厨房吸油烟机", + "copy": "false", + "createTime": "6月20日", + "createTimeInterval": "2周前", + "creditLevel": "10", + "extraInfoMap": { + "userGrade": "5", + "report_url": "https://market.m.taobao.com/app/msd/buyer-aqcenter/report.html?bizSource=taobao&from=ItemComment&subjectType=ITEM_RATE&subjectId=1275545264217#/index" + }, + "feedPicList": [ + { + "cover": "false", + "extraMap": { + "matchExpression": "false" + }, + "fileId": "1810308482982386606", + "height": "4032", + "status": "1", + "thumbnail": "//img.alicdn.com/imgextra/i4/4611686018427382039/O1CN01ECh5iH29jEO1vdoVi_!!4611686018427382039-0-rate.jpg", + "width": "3024" + }, + { + "cover": "false", + "extraMap": { + "matchExpression": "false" + }, + "fileId": "1810308483782534722", + "height": "4032", + "status": "1", + "thumbnail": "//img.alicdn.com/imgextra/i2/4611686018427382039/O1CN01xir2E329jEO2nn9aU_!!4611686018427382039-0-rate.jpg", + "width": "3024" + }, + { + "cover": "false", + "extraMap": { + "matchExpression": "false" + }, + "fileId": "1810308483041411210", + "height": "3024", + "status": "1", + "thumbnail": "//img.alicdn.com/imgextra/i3/4611686018427382039/O1CN01ryz21F29jEO1zdTVS_!!4611686018427382039-0-rate.jpg", + "width": "4032" + } + ], + "feedPicPathList": [ + "//img.alicdn.com/imgextra/i4/4611686018427382039/O1CN01ECh5iH29jEO1vdoVi_!!4611686018427382039-0-rate.jpg", + "//img.alicdn.com/imgextra/i2/4611686018427382039/O1CN01xir2E329jEO2nn9aU_!!4611686018427382039-0-rate.jpg", + "//img.alicdn.com/imgextra/i3/4611686018427382039/O1CN01ryz21F29jEO1zdTVS_!!4611686018427382039-0-rate.jpg" + ], + "feedback": "风力大非常不错", + "feedbackDate": "2025年6月20日", + "formalBlackUser": "false", + "goldUser": "false", + "hasDetail": "true", + "headFrameUrl": "", + "headPicUrl": "//sns.m.taobao.com/avatar/sns/user/flag/sns_logo?type=taobao&kn=wwc_tb_11&bizCode=taobao_avatar&userFlag=RAzN84GK7wS8eNMnE1E4627tRY6FDsHZxwbFzBAvGfMza5ybFjnsrZTZGpaAqTXz1LtMxE8BtsJWXEqxs7Y2atMzJiFefuBoqo2fKoVHCLamVq1evToWpweYnGFmrHgupSfpGSt2i3rtGDVdJZdzKTQ5N5EFrqwEeo52hSh", + "id": "1275545264217", + "interactInfo": { + "alreadyDislike": "false", + "alreadyLike": "false", + "commentCount": "0", + "enableComment": "true", + "enableLike": "true", + "enableShare": "true", + "likeCount": "0", + "readCount": "18" + }, + "own": "false", + "rateType": "1", + "reduceUserNick": "小**瘪", + "repeatBusiness": "true", + "reply": "能得到您的喜爱与满意,对于我们来说都是一份鼓励和支持,我们会好好珍惜这一切并继续努力的。海尔祝您生活愉快,天天好心情。加入会员领取更多专享福利呦~", + "share": { + "detailShareUrl": "https://web.m.taobao.com/app/mtb-guang/showcase/transfer?target_page=rate_detail&target_h5=https%3A%2F%2Fh5.m.taobao.com%2Fuser_comment%2Fcomment_detail.html&rateId=1275545264217", + "detailUrl": "//h5.m.taobao.com/tnode/index.htm?tnode=page_ratedetail%40ugc%3fpangesture%3dpullrightexit%26navbarHide%3dtrue%26immersive%3dtrue&rateId=1275545264217&headPic=http%3A%2F%2Fsns.m.taobao.com%2Favatar%2Fsns%2Fuser%2Fflag%2Fsns_logo%3Ftype%3Dtaobao%26kn%3Dwwc_tb_11%26bizCode%3Dtaobao_avatar%26userFlag%3DRAzN84GK7wS8eNMnE1E4627tRY6FDsHZxwbFzBAvGfMza5ybFjnsrZTZGpaAqTXz1LtMxE8BtsJWXEqxs7Y2atMzJiFefuBoqo2fKoVHCLamVq1evToWpweYnGFmrHgupSfpGSt2i3rtGDVdJZdzKTQ5N5EFrqwEeo52hSh", + "shareCover": "//img.alicdn.com/imgextra/i4/4611686018427382039/O1CN01ECh5iH29jEO1vdoVi_!!4611686018427382039-0-rate.jpg", + "shareSupport": "true", + "shareURL": "//h5.m.taobao.com/user_comment/comment_detail.html?rateId=1275545264217&sellerId=MMmIyvC*HP0RIMHgbvGQbOH8WM8leOFcWPC8SOHkWPFxT&isEncode=true" + }, + "skuId": "5767407060270", + "skuMap": { + "颜色分类": "28m³/min 钢琴黑" + }, + "skuValueStr": "28m³/min 钢琴黑", + "skuVids": "32888575647", + "structTagEndSize": "0", + "topRate": "0", + "userId": "0", + "userIndexURL": "", + "userMark": "H0qX2VOjo/l7G+4zaFqU0W3NnejCOwS5/JZYXj1+TpE=", + "userNick": "小**瘪", + "userStar": "8", + "userStarPic": "https://img.alicdn.com/imgextra/i4/O1CN019QZnaG1U1LtUAPn6e_!!6000000002457-2-tps-92-45.png", + "userTagList": [ + { + "extraInfo": { + "level": "10" + }, + "tagCode": "credit", + "tagDesc": "信用等级", + "tagIconHeight": "27", + "tagIconPic": "https://img.alicdn.com/imgextra/i4/O1CN019QZnaG1U1LtUAPn6e_!!6000000002457-2-tps-92-45.png", + "tagIconWidth": "53" + } + ] + }, + { + "addCartUrl": "https://sku.taobao.com/index.htm?itemId=907297542617&bottomMode=ADDCART&asyncApiType=normalBuy&skuId=5767407060270", + "allowComment": "true", + "allowInteract": "true", + "allowNote": "false", + "allowReportReview": "true", + "allowReportUser": "false", + "allowShieldReview": "false", + "allowShieldUser": "false", + "annoy": "0", + "auctionNumId": "907297542617", + "auctionTitle": "新品海尔抽油烟机大嘴C61Pro变频大吸力顶侧双吸家用厨房吸油烟机", + "copy": "false", + "createTime": "6月17日", + "createTimeInterval": "2周前", + "creditLevel": "11", + "decision": { + "decisionNode": [ + { + "highLight": "false", + "title": "吸油很好" + }, + { + "highLight": "false", + "title": "安装很快" + } + ], + "title": "商品性能及服务" + }, + "extraInfoMap": { + "userGrade": "5", + "report_url": "https://market.m.taobao.com/app/msd/buyer-aqcenter/report.html?bizSource=taobao&from=ItemComment&subjectType=ITEM_RATE&subjectId=1275395151284#/index" + }, + "feedPicList": [ + { + "cover": "false", + "extraMap": { + "matchExpression": "false" + }, + "fileId": "1345508481588957730", + "height": "3024", + "status": "1", + "thumbnail": "//img.alicdn.com/imgextra/i4/4611686018427384159/O1CN01YlOMTo1bORTM1GUTK_!!4611686018427384159-0-tbbala.jpg", + "width": "4032" + }, + { + "cover": "false", + "extraMap": { + "matchExpression": "false" + }, + "fileId": "1345508481117259410", + "height": "4032", + "status": "1", + "thumbnail": "//img.alicdn.com/imgextra/i2/4611686018427384159/O1CN01gquosX1bORTLVLIBu_!!4611686018427384159-0-tbbala.jpg", + "width": "3024" + }, + { + "cover": "false", + "extraMap": { + "matchExpression": "false" + }, + "fileId": "1345508481323924862", + "height": "4032", + "status": "1", + "thumbnail": "//img.alicdn.com/imgextra/i2/4611686018427384159/O1CN01BxiCZf1bORTLjKRJe_!!4611686018427384159-0-tbbala.jpg", + "width": "3024" + } + ], + "feedPicPathList": [ + "//img.alicdn.com/imgextra/i4/4611686018427384159/O1CN01YlOMTo1bORTM1GUTK_!!4611686018427384159-0-tbbala.jpg", + "//img.alicdn.com/imgextra/i2/4611686018427384159/O1CN01gquosX1bORTLVLIBu_!!4611686018427384159-0-tbbala.jpg", + "//img.alicdn.com/imgextra/i2/4611686018427384159/O1CN01BxiCZf1bORTLjKRJe_!!4611686018427384159-0-tbbala.jpg" + ], + "feedback": "油烟机颜值非常高,发货挺快的,师傅立马安装工作效率高,油烟机吸力很大,与卖家说的一致?", + "feedbackDate": "2025年6月17日", + "formalBlackUser": "false", + "goldUser": "false", + "hasDetail": "true", + "headFrameUrl": "", + "headPicUrl": "//sns.m.taobao.com/avatar/sns/user/flag/sns_logo?type=taobao&kn=wwc_tb_11&bizCode=taobao_avatar&userFlag=RAzN83923zmuym8oqcXSSMSQq8SVJLsPWnzEYYbvzjGxYyRKqwL5E9MuPzcTJFpgsTiEH2iGcdbrCuLerETzySGMHSYEA9YBa2gRqcXYMnmSLshCxJycMLQA35cd", + "id": "1275395151284", + "interactInfo": { + "alreadyDislike": "false", + "alreadyLike": "false", + "commentCount": "0", + "enableComment": "true", + "enableLike": "true", + "enableShare": "true", + "likeCount": "3", + "readCount": "132" + }, + "own": "false", + "rateType": "1", + "reduceUserNick": "t**6", + "repeatBusiness": "false", + "reply": "亲亲,有幸与您结识便是我们的缘分,我们会让时间证明,您选择海尔官方旗舰店是个多么英明睿智的决定!我们会用百分百的诚信和百分百的服务换取您百分之两百的满意!感谢您对海尔的支持【海尔官方旗舰店】加入会员领取更多专享福利呦~", + "share": { + "detailShareUrl": "https://web.m.taobao.com/app/mtb-guang/showcase/transfer?target_page=rate_detail&target_h5=https%3A%2F%2Fh5.m.taobao.com%2Fuser_comment%2Fcomment_detail.html&rateId=1275395151284", + "detailUrl": "//h5.m.taobao.com/tnode/index.htm?tnode=page_ratedetail%40ugc%3fpangesture%3dpullrightexit%26navbarHide%3dtrue%26immersive%3dtrue&rateId=1275395151284&headPic=http%3A%2F%2Fsns.m.taobao.com%2Favatar%2Fsns%2Fuser%2Fflag%2Fsns_logo%3Ftype%3Dtaobao%26kn%3Dwwc_tb_11%26bizCode%3Dtaobao_avatar%26userFlag%3DRAzN83923zmuym8oqcXSSMSQq8SVJLsPWnzEYYbvzjGxYyRKqwL5E9MuPzcTJFpgsTiEH2iGcdbrCuLerETzySGMHSYEA9YBa2gRqcXYMnmSLshCxJycMLQA35cd", + "shareCover": "//img.alicdn.com/imgextra/i4/4611686018427384159/O1CN01YlOMTo1bORTM1GUTK_!!4611686018427384159-0-tbbala.jpg", + "shareSupport": "true", + "shareURL": "//h5.m.taobao.com/user_comment/comment_detail.html?rateId=1275395151284&sellerId=MMmIyvC*HP0RIMHgbvGQbOH8WM8leOFcWPC8SOHkWPFxT&isEncode=true" + }, + "skuId": "5767407060270", + "skuMap": { + "颜色分类": "28m³/min 钢琴黑" + }, + "skuValueStr": "28m³/min 钢琴黑", + "skuVids": "32888575647", + "structTagEndSize": "43", + "topRate": "0", + "userId": "0", + "userIndexURL": "", + "userMark": "JBBwgfNtHQ7v6gWy/AgI8YSgE6JQO1Oh3PHtKrS02Uo=", + "userNick": "t**6", + "userStar": "9", + "userStarPic": "https://img.alicdn.com/imgextra/i3/O1CN01PIYxrZ22FGrmiDphN_!!6000000007090-2-tps-92-45.png", + "userTagList": [ + { + "extraInfo": { + "level": "11" + }, + "tagCode": "credit", + "tagDesc": "信用等级", + "tagIconHeight": "27", + "tagIconPic": "https://img.alicdn.com/imgextra/i3/O1CN01PIYxrZ22FGrmiDphN_!!6000000007090-2-tps-92-45.png", + "tagIconWidth": "53" + } + ] + }, + { + "addCartUrl": "https://sku.taobao.com/index.htm?itemId=907297542617&bottomMode=ADDCART&asyncApiType=normalBuy&skuId=5767407060270", + "allowComment": "true", + "allowInteract": "true", + "allowNote": "false", + "allowReportReview": "true", + "allowReportUser": "false", + "allowShieldReview": "false", + "allowShieldUser": "false", + "annoy": "0", + "auctionNumId": "907297542617", + "auctionTitle": "新品海尔抽油烟机大嘴C61Pro变频大吸力顶侧双吸家用厨房吸油烟机", + "copy": "false", + "createTime": "6月15日", + "createTimeInterval": "2周前", + "creditLevel": "9", + "decision": { + "decisionNode": [ + { + "highLight": "false", + "title": "吸油很好" + }, + { + "highLight": "false", + "title": "安装很快" + } + ], + "title": "商品性能及服务" + }, + "extraInfoMap": { + "userGrade": "5", + "report_url": "https://market.m.taobao.com/app/msd/buyer-aqcenter/report.html?bizSource=taobao&from=ItemComment&subjectType=ITEM_RATE&subjectId=1275178190357#/index" + }, + "feedPicList": [ + { + "cover": "false", + "extraMap": { + "matchExpression": "false" + }, + "fileId": "1131608478596888486", + "height": "1440", + "status": "1", + "thumbnail": "//img.alicdn.com/imgextra/i3/4611686018427384180/O1CN01784bAW1LamHqmBFzy_!!4611686018427384180-0-rate.jpg", + "width": "1080" + }, + { + "cover": "false", + "extraMap": { + "matchExpression": "false" + }, + "fileId": "1131608480074798802", + "height": "1440", + "status": "1", + "thumbnail": "//img.alicdn.com/imgextra/i3/4611686018427384180/O1CN01yXgxR81LamHsOCPz8_!!4611686018427384180-0-rate.jpg", + "width": "1080" + }, + { + "cover": "false", + "extraMap": { + "matchExpression": "false" + }, + "fileId": "1131608479073401833", + "height": "1440", + "status": "1", + "thumbnail": "//img.alicdn.com/imgextra/i2/4611686018427384180/O1CN01M3nhAM1LamHrIQet7_!!4611686018427384180-0-rate.jpg", + "width": "1080" + } + ], + "feedPicPathList": [ + "//img.alicdn.com/imgextra/i3/4611686018427384180/O1CN01784bAW1LamHqmBFzy_!!4611686018427384180-0-rate.jpg", + "//img.alicdn.com/imgextra/i3/4611686018427384180/O1CN01yXgxR81LamHsOCPz8_!!4611686018427384180-0-rate.jpg", + "//img.alicdn.com/imgextra/i2/4611686018427384180/O1CN01M3nhAM1LamHrIQet7_!!4611686018427384180-0-rate.jpg" + ], + "feedback": "海尔抽油烟机,样子确实好看,安装后跟想象一样,吸力大,值得拥有!", + "feedbackDate": "2025年6月15日", + "formalBlackUser": "false", + "goldUser": "false", + "hasDetail": "true", + "headFrameUrl": "", + "headPicUrl": "//sns.m.taobao.com/avatar/sns/user/flag/sns_logo?type=taobao&kn=wwc_tb_11&bizCode=taobao_avatar&userFlag=RAzN84GK7wS8eNMnE1E4627tRY6FDsHZxwbGTnW8nsDDK2rarfNqhYwbZmR5SADpocwzKoPz5tF1hSrcdcPfbxU2FVEfzHZCQdEpV917skZ7sKg3HWipFbsvgSPLTYR535rMrBryHTKp23Z6SajhN28L25oFYX8F9oPL2mf", + "id": "1275178190357", + "interactInfo": { + "alreadyDislike": "false", + "alreadyLike": "false", + "commentCount": "0", + "enableComment": "true", + "enableLike": "true", + "enableShare": "true", + "likeCount": "0", + "readCount": "41" + }, + "own": "false", + "rateType": "1", + "reduceUserNick": "永**6", + "repeatBusiness": "false", + "reply": "感谢您对海尔官方旗舰店的支持和认同,我们会继续努力,以百分百的热情为每一位顾客服务。您在使用中有任何问题,可以随时联系我们在线客服,真正优质的全国免费安装,售后无忧服务。海尔旗舰店全体员工为您及家人健康保驾护航,期待您再次光临,祝您生活愉快。加入会员领取更多专享福利呦~", + "share": { + "detailShareUrl": "https://web.m.taobao.com/app/mtb-guang/showcase/transfer?target_page=rate_detail&target_h5=https%3A%2F%2Fh5.m.taobao.com%2Fuser_comment%2Fcomment_detail.html&rateId=1275178190357", + "detailUrl": "//h5.m.taobao.com/tnode/index.htm?tnode=page_ratedetail%40ugc%3fpangesture%3dpullrightexit%26navbarHide%3dtrue%26immersive%3dtrue&rateId=1275178190357&headPic=http%3A%2F%2Fsns.m.taobao.com%2Favatar%2Fsns%2Fuser%2Fflag%2Fsns_logo%3Ftype%3Dtaobao%26kn%3Dwwc_tb_11%26bizCode%3Dtaobao_avatar%26userFlag%3DRAzN84GK7wS8eNMnE1E4627tRY6FDsHZxwbGTnW8nsDDK2rarfNqhYwbZmR5SADpocwzKoPz5tF1hSrcdcPfbxU2FVEfzHZCQdEpV917skZ7sKg3HWipFbsvgSPLTYR535rMrBryHTKp23Z6SajhN28L25oFYX8F9oPL2mf", + "shareCover": "//img.alicdn.com/imgextra/i3/4611686018427384180/O1CN01784bAW1LamHqmBFzy_!!4611686018427384180-0-rate.jpg", + "shareSupport": "true", + "shareURL": "//h5.m.taobao.com/user_comment/comment_detail.html?rateId=1275178190357&sellerId=MMmIyvC*HP0RIMHgbvGQbOH8WM8leOFcWPC8SOHkWPFxT&isEncode=true" + }, + "skuId": "5767407060270", + "skuMap": { + "颜色分类": "28m³/min 钢琴黑" + }, + "skuValueStr": "28m³/min 钢琴黑", + "skuVids": "32888575647", + "structTagEndSize": "32", + "topRate": "0", + "userId": "0", + "userIndexURL": "", + "userMark": "FCM4FA6OmlVX1umgxRgxd1rWf0PcLV38zv67gqGEg3Y=", + "userNick": "永**6", + "userStar": "7", + "userStarPic": "https://img.alicdn.com/imgextra/i4/O1CN01ZlCYMx1nbVriw6u0S_!!6000000005108-2-tps-92-45.png", + "userTagList": [ + { + "extraInfo": { + "level": "9" + }, + "tagCode": "credit", + "tagDesc": "信用等级", + "tagIconHeight": "27", + "tagIconPic": "https://img.alicdn.com/imgextra/i4/O1CN01ZlCYMx1nbVriw6u0S_!!6000000005108-2-tps-92-45.png", + "tagIconWidth": "53" + } + ], + "video": { + "cloudVideoUrl": "//cloud.video.taobao.com/play/u/null/p/1/d/hd/e/6/t/1/523201841034.mp4", + "coverUrl": "//img.alicdn.com/imgextra/i2/O1CN01Nkk4Xe1LamHrwro4Z_!!4611686018427384180-0-tbbala.jpg", + "extraMap": { + "matchExpression": "false" + }, + "height": "1280", + "sourceVideoUrl": "//pingjia.alicdn.com/aus/wantu_pingjia/1653864788/4072a5f08fb24f87a2f819b2149163a6.mp4", + "status": "1", + "videoId": "523201841034", + "videoVoice": "true", + "width": "720" + } + }, + { + "addCartUrl": "https://sku.taobao.com/index.htm?itemId=907297542617&bottomMode=ADDCART&asyncApiType=normalBuy&skuId=5767407060270", + "allowComment": "true", + "allowInteract": "true", + "allowNote": "false", + "allowReportReview": "true", + "allowReportUser": "false", + "allowShieldReview": "false", + "allowShieldUser": "false", + "annoy": "0", + "auctionNumId": "907297542617", + "auctionTitle": "新品海尔抽油烟机大嘴C61Pro变频大吸力顶侧双吸家用厨房吸油烟机", + "copy": "false", + "createTime": "6月14日", + "createTimeInterval": "3周前", + "creditLevel": "9", + "decision": { + "decisionNode": [ + { + "highLight": "false", + "title": "安装很快" + }, + { + "highLight": "false", + "title": "吸油很好" + } + ], + "title": "商品性能及服务" + }, + "extraInfoMap": { + "userGrade": "5", + "report_url": "https://market.m.taobao.com/app/msd/buyer-aqcenter/report.html?bizSource=taobao&from=ItemComment&subjectType=ITEM_RATE&subjectId=1275099739602#/index" + }, + "feedPicList": [ + { + "cover": "false", + "extraMap": { + "matchExpression": "false" + }, + "fileId": "1688008478689501714", + "height": "1280", + "status": "1", + "thumbnail": "//img.alicdn.com/imgextra/i1/4611686018427381488/O1CN01Utod9E20h5zs3eysU_!!4611686018427381488-0-rate.jpg", + "width": "1280" + }, + { + "cover": "false", + "extraMap": { + "matchExpression": "false" + }, + "fileId": "1688008478689725511", + "height": "1280", + "status": "1", + "thumbnail": "//img.alicdn.com/imgextra/i1/4611686018427381488/O1CN01lC0kD120h5zs3fv67_!!4611686018427381488-0-rate.jpg", + "width": "1280" + }, + { + "cover": "false", + "extraMap": { + "matchExpression": "false" + }, + "fileId": "1688008479091118258", + "height": "627", + "status": "1", + "thumbnail": "//img.alicdn.com/imgextra/i3/4611686018427381488/O1CN01KhXKWP20h5zsUq7gg_!!4611686018427381488-2-rate.png", + "width": "643" + } + ], + "feedPicPathList": [ + "//img.alicdn.com/imgextra/i1/4611686018427381488/O1CN01Utod9E20h5zs3eysU_!!4611686018427381488-0-rate.jpg", + "//img.alicdn.com/imgextra/i1/4611686018427381488/O1CN01lC0kD120h5zs3fv67_!!4611686018427381488-0-rate.jpg", + "//img.alicdn.com/imgextra/i3/4611686018427381488/O1CN01KhXKWP20h5zsUq7gg_!!4611686018427381488-2-rate.png" + ], + "feedback": "顶侧双吸的,颜值高,真的很喜欢,海尔这个牌子实力过硬。", + "feedbackDate": "2025年6月14日", + "formalBlackUser": "false", + "goldUser": "false", + "hasDetail": "true", + "headFrameUrl": "", + "headPicUrl": "//sns.m.taobao.com/avatar/sns/user/flag/sns_logo?type=taobao&kn=wwc_tb_11&bizCode=taobao_avatar&userFlag=RAzN84GK7wS8eP35LZnzcszMfhtU7EYeVZPCi8m9ByfdYUyNgaQG2B1PsFUuAAT6U9fzKgHUtq1JcqzcXsBzNQByjthYAiLtvvozSZHb1r4k1rdnSUaPiTqnuqYY1KnLBgrXzHxVk4QUPt9oyKqE1J3A71WPvytv2hrsbgV", + "id": "1275099739602", + "interactInfo": { + "alreadyDislike": "false", + "alreadyLike": "false", + "commentCount": "0", + "enableComment": "true", + "enableLike": "true", + "enableShare": "true", + "likeCount": "0", + "readCount": "12" + }, + "own": "false", + "rateType": "1", + "reduceUserNick": "青**南", + "repeatBusiness": "true", + "reply": "感谢亲的评价,我赏春风燕子追,喜看万物把情催,欢飞我若翩跹蝶,你似桃花绽蕊蕾。祝天天愉快!加入会员领取更多专享福利呦~", + "share": { + "detailShareUrl": "https://web.m.taobao.com/app/mtb-guang/showcase/transfer?target_page=rate_detail&target_h5=https%3A%2F%2Fh5.m.taobao.com%2Fuser_comment%2Fcomment_detail.html&rateId=1275099739602", + "detailUrl": "//h5.m.taobao.com/tnode/index.htm?tnode=page_ratedetail%40ugc%3fpangesture%3dpullrightexit%26navbarHide%3dtrue%26immersive%3dtrue&rateId=1275099739602&headPic=http%3A%2F%2Fsns.m.taobao.com%2Favatar%2Fsns%2Fuser%2Fflag%2Fsns_logo%3Ftype%3Dtaobao%26kn%3Dwwc_tb_11%26bizCode%3Dtaobao_avatar%26userFlag%3DRAzN84GK7wS8eP35LZnzcszMfhtU7EYeVZPCi8m9ByfdYUyNgaQG2B1PsFUuAAT6U9fzKgHUtq1JcqzcXsBzNQByjthYAiLtvvozSZHb1r4k1rdnSUaPiTqnuqYY1KnLBgrXzHxVk4QUPt9oyKqE1J3A71WPvytv2hrsbgV", + "shareCover": "//img.alicdn.com/imgextra/i1/4611686018427381488/O1CN01Utod9E20h5zs3eysU_!!4611686018427381488-0-rate.jpg", + "shareSupport": "true", + "shareURL": "//h5.m.taobao.com/user_comment/comment_detail.html?rateId=1275099739602&sellerId=MMmIyvC*HP0RIMHgbvGQbOH8WM8leOFcWPC8SOHkWPFxT&isEncode=true" + }, + "skuId": "5767407060270", + "skuMap": { + "颜色分类": "28m³/min 钢琴黑" + }, + "skuValueStr": "28m³/min 钢琴黑", + "skuVids": "32888575647", + "structTagEndSize": "27", + "topRate": "0", + "userId": "0", + "userIndexURL": "", + "userMark": "9NCO3VVQ9iV6WXlhZwTEc6QelICtC4t5hvLvQOYpZjE=", + "userNick": "青**南", + "userStar": "7", + "userStarPic": "https://img.alicdn.com/imgextra/i4/O1CN01ZlCYMx1nbVriw6u0S_!!6000000005108-2-tps-92-45.png", + "userTagList": [ + { + "extraInfo": { + "level": "9" + }, + "tagCode": "credit", + "tagDesc": "信用等级", + "tagIconHeight": "27", + "tagIconPic": "https://img.alicdn.com/imgextra/i4/O1CN01ZlCYMx1nbVriw6u0S_!!6000000005108-2-tps-92-45.png", + "tagIconWidth": "53" + } + ] + }, + { + "addCartUrl": "https://sku.taobao.com/index.htm?itemId=907297542617&bottomMode=ADDCART&asyncApiType=normalBuy&skuId=5767407060270", + "allowComment": "true", + "allowInteract": "true", + "allowNote": "false", + "allowReportReview": "true", + "allowReportUser": "false", + "allowShieldReview": "false", + "allowShieldUser": "false", + "annoy": "0", + "auctionNumId": "907297542617", + "auctionTitle": "新品海尔抽油烟机大嘴C61Pro变频大吸力顶侧双吸家用厨房吸油烟机", + "copy": "false", + "createTime": "6月12日", + "createTimeInterval": "3周前", + "creditLevel": "11", + "elite": "1", + "extraInfoMap": { + "userGrade": "5", + "report_url": "https://market.m.taobao.com/app/msd/buyer-aqcenter/report.html?bizSource=taobao&from=ItemComment&subjectType=ITEM_RATE&subjectId=1274751960565#/index" + }, + "feedPicList": [ + { + "cover": "false", + "extraMap": { + "matchExpression": "false" + }, + "fileId": "1657008476339481619", + "height": "4096", + "status": "1", + "thumbnail": "//img.alicdn.com/imgextra/i1/4611686018427380298/O1CN01gTURrR1yP7DRfbh2Z_!!4611686018427380298-0-rate.jpg", + "width": "3072" + }, + { + "cover": "false", + "extraMap": { + "matchExpression": "false" + }, + "fileId": "1657008477640271752", + "height": "2448", + "status": "1", + "thumbnail": "//img.alicdn.com/imgextra/i3/4611686018427380298/O1CN015KZMgE1yP7DT5dfya_!!4611686018427380298-0-rate.jpg", + "width": "3264" + }, + { + "cover": "false", + "extraMap": { + "matchExpression": "false" + }, + "fileId": "1657008475856968087", + "height": "3072", + "status": "1", + "thumbnail": "//img.alicdn.com/imgextra/i1/4611686018427380298/O1CN01267fxS1yP7DR8x7EF_!!4611686018427380298-0-rate.jpg", + "width": "4096" + } + ], + "feedPicPathList": [ + "//img.alicdn.com/imgextra/i1/4611686018427380298/O1CN01gTURrR1yP7DRfbh2Z_!!4611686018427380298-0-rate.jpg", + "//img.alicdn.com/imgextra/i3/4611686018427380298/O1CN015KZMgE1yP7DT5dfya_!!4611686018427380298-0-rate.jpg", + "//img.alicdn.com/imgextra/i1/4611686018427380298/O1CN01267fxS1yP7DR8x7EF_!!4611686018427380298-0-rate.jpg" + ], + "feedback": "家住高层楼房的低层,为了能够顺利排出油烟,特意选择了这款最大静压大于1000Pa,大吸力、易清洁的顶侧双吸抽油烟机。安装后经过测试完全满足以上要求,海尔的产品样样都是精品。", + "feedbackDate": "2025年6月12日", + "formalBlackUser": "false", + "goldUser": "false", + "hasDetail": "true", + "headFrameUrl": "", + "headPicUrl": "//sns.m.taobao.com/avatar/sns/user/flag/sns_logo?type=taobao&kn=wwc_tb_11&bizCode=taobao_avatar&userFlag=RAzN83923zmuymA2Bx76ZwHVZwgDDZLmidog88LszJ2zYMDpetFkSmDuGAXZQdFBizszAirJVAKZWXXozXKEczm1bRCeRrWBLudJ7oT8aRPZSzF9AerEVNrJEYMz", + "id": "1274751960565", + "interactInfo": { + "alreadyDislike": "false", + "alreadyLike": "false", + "commentCount": "0", + "enableComment": "true", + "enableLike": "true", + "enableShare": "true", + "likeCount": "4", + "readCount": "227" + }, + "own": "false", + "rateType": "1", + "reduceUserNick": "w**1", + "repeatBusiness": "false", + "reply": "亲,感谢您购买咱家的产品,您的好评是春天绿叶上的鲜花,让我看了心里美到不行啊!我们非常感谢您对我们的认可!期待与您的再次合作喔!加入会员领取更多专享福利呦~", + "share": { + "detailShareUrl": "https://web.m.taobao.com/app/mtb-guang/showcase/transfer?target_page=rate_detail&target_h5=https%3A%2F%2Fh5.m.taobao.com%2Fuser_comment%2Fcomment_detail.html&rateId=1274751960565", + "detailUrl": "//h5.m.taobao.com/tnode/index.htm?tnode=page_ratedetail%40ugc%3fpangesture%3dpullrightexit%26navbarHide%3dtrue%26immersive%3dtrue&rateId=1274751960565&headPic=http%3A%2F%2Fsns.m.taobao.com%2Favatar%2Fsns%2Fuser%2Fflag%2Fsns_logo%3Ftype%3Dtaobao%26kn%3Dwwc_tb_11%26bizCode%3Dtaobao_avatar%26userFlag%3DRAzN83923zmuymA2Bx76ZwHVZwgDDZLmidog88LszJ2zYMDpetFkSmDuGAXZQdFBizszAirJVAKZWXXozXKEczm1bRCeRrWBLudJ7oT8aRPZSzF9AerEVNrJEYMz", + "shareCover": "//img.alicdn.com/imgextra/i1/4611686018427380298/O1CN01gTURrR1yP7DRfbh2Z_!!4611686018427380298-0-rate.jpg", + "shareSupport": "true", + "shareURL": "//h5.m.taobao.com/user_comment/comment_detail.html?rateId=1274751960565&sellerId=MMmIyvC*HP0RIMHgbvGQbOH8WM8leOFcWPC8SOHkWPFxT&isEncode=true" + }, + "skuId": "5767407060270", + "skuMap": { + "颜色分类": "28m³/min 钢琴黑" + }, + "skuValueStr": "28m³/min 钢琴黑", + "skuVids": "32888575647", + "structTagEndSize": "0", + "topRate": "0", + "userId": "0", + "userIndexURL": "", + "userMark": "JdE2AYpno8aHPLWmBl4e1Woby/T1mAnngkNkZSBhHXo=", + "userNick": "w**1", + "userStar": "9", + "userStarPic": "https://img.alicdn.com/imgextra/i3/O1CN01PIYxrZ22FGrmiDphN_!!6000000007090-2-tps-92-45.png", + "userTagList": [ + { + "extraInfo": { + "level": "11" + }, + "tagCode": "credit", + "tagDesc": "信用等级", + "tagIconHeight": "27", + "tagIconPic": "https://img.alicdn.com/imgextra/i3/O1CN01PIYxrZ22FGrmiDphN_!!6000000007090-2-tps-92-45.png", + "tagIconWidth": "53" + } + ] + }, + { + "addCartUrl": "https://sku.taobao.com/index.htm?itemId=907297542617&bottomMode=ADDCART&asyncApiType=normalBuy&skuId=5767407060270", + "allowComment": "true", + "allowInteract": "true", + "allowNote": "false", + "allowReportReview": "true", + "allowReportUser": "false", + "allowShieldReview": "false", + "allowShieldUser": "false", + "annoy": "0", + "auctionNumId": "907297542617", + "auctionTitle": "新品海尔抽油烟机大嘴C61Pro变频大吸力顶侧双吸家用厨房吸油烟机", + "copy": "false", + "createTime": "5月26日", + "createTimeInterval": "1个月前", + "creditLevel": "11", + "decision": { + "decisionNode": [ + { + "highLight": "false", + "title": "吸油很好" + }, + { + "highLight": "false", + "title": "安装很快" + } + ], + "title": "商品性能及服务" + }, + "extraInfoMap": { + "userGrade": "5", + "report_url": "https://market.m.taobao.com/app/msd/buyer-aqcenter/report.html?bizSource=taobao&from=ItemComment&subjectType=ITEM_RATE&subjectId=1273047752107#/index" + }, + "feedPicList": [ + { + "cover": "false", + "extraMap": { + "matchExpression": "false" + }, + "fileId": "1448908460113403392", + "height": "1706", + "status": "1", + "thumbnail": "//img.alicdn.com/imgextra/i2/4611686018427384681/O1CN01Rnw14j1j20zxde43c_!!4611686018427384681-0-rate.jpg", + "width": "1279" + }, + { + "cover": "false", + "extraMap": { + "matchExpression": "false" + }, + "fileId": "1448908459490824790", + "height": "1279", + "status": "1", + "thumbnail": "//img.alicdn.com/imgextra/i3/4611686018427384681/O1CN01irEYQz1j20zwxVmvG_!!4611686018427384681-0-rate.jpg", + "width": "1706" + } + ], + "feedPicPathList": [ + "//img.alicdn.com/imgextra/i2/4611686018427384681/O1CN01Rnw14j1j20zxde43c_!!4611686018427384681-0-rate.jpg", + "//img.alicdn.com/imgextra/i3/4611686018427384681/O1CN01irEYQz1j20zwxVmvG_!!4611686018427384681-0-rate.jpg" + ], + "feedback": "商品物美价廉物超所值!安装师傅特别负责!很给力!", + "feedbackDate": "2025年5月26日", + "formalBlackUser": "false", + "goldUser": "false", + "hasDetail": "true", + "headFrameUrl": "", + "headPicUrl": "//sns.m.taobao.com/avatar/sns/user/flag/sns_logo?type=taobao&kn=wwc_tb_11&bizCode=taobao_avatar&userFlag=RAzN83923zmuym8oqcXSSMSQq8SVJLsPWnzEWqRaHVk5h6qVYdSGyYukvZLrvkwUFbR1uQsvo4jhzWfeHZcTZbjag8Q3XLyCuDukGmEgviTaMsMZ5P9SZD9F2nRu", + "id": "1273047752107", + "interactInfo": { + "alreadyDislike": "false", + "alreadyLike": "false", + "commentCount": "0", + "enableComment": "true", + "enableLike": "true", + "enableShare": "true", + "likeCount": "0", + "readCount": "63" + }, + "own": "false", + "rateType": "1", + "reduceUserNick": "t**1", + "repeatBusiness": "true", + "reply": "这是一行简单的小评价,写着我们心中的希望,看到您如此的好评,已醉在他乡。谢谢您的好评哦! (海尔官方旗舰店)祝您生活愉快!加入会员领取更多专享福利呦~", + "share": { + "detailShareUrl": "https://web.m.taobao.com/app/mtb-guang/showcase/transfer?target_page=rate_detail&target_h5=https%3A%2F%2Fh5.m.taobao.com%2Fuser_comment%2Fcomment_detail.html&rateId=1273047752107", + "detailUrl": "//h5.m.taobao.com/tnode/index.htm?tnode=page_ratedetail%40ugc%3fpangesture%3dpullrightexit%26navbarHide%3dtrue%26immersive%3dtrue&rateId=1273047752107&headPic=http%3A%2F%2Fsns.m.taobao.com%2Favatar%2Fsns%2Fuser%2Fflag%2Fsns_logo%3Ftype%3Dtaobao%26kn%3Dwwc_tb_11%26bizCode%3Dtaobao_avatar%26userFlag%3DRAzN83923zmuym8oqcXSSMSQq8SVJLsPWnzEWqRaHVk5h6qVYdSGyYukvZLrvkwUFbR1uQsvo4jhzWfeHZcTZbjag8Q3XLyCuDukGmEgviTaMsMZ5P9SZD9F2nRu", + "shareCover": "//img.alicdn.com/imgextra/i2/4611686018427384681/O1CN01Rnw14j1j20zxde43c_!!4611686018427384681-0-rate.jpg", + "shareSupport": "true", + "shareURL": "//h5.m.taobao.com/user_comment/comment_detail.html?rateId=1273047752107&sellerId=MMmIyvC*HP0RIMHgbvGQbOH8WM8leOFcWPC8SOHkWPFxT&isEncode=true" + }, + "skuId": "5767407060270", + "skuMap": { + "颜色分类": "28m³/min 钢琴黑" + }, + "skuValueStr": "28m³/min 钢琴黑", + "skuVids": "32888575647", + "structTagEndSize": "24", + "topRate": "0", + "userId": "0", + "userIndexURL": "", + "userMark": "Yl/ts+CHH4P92h6bsILkD/ysXYHwnQMBcxsCxO/wixU=", + "userNick": "t**1", + "userStar": "9", + "userStarPic": "https://img.alicdn.com/imgextra/i3/O1CN01PIYxrZ22FGrmiDphN_!!6000000007090-2-tps-92-45.png", + "userTagList": [ + { + "extraInfo": { + "level": "11" + }, + "tagCode": "credit", + "tagDesc": "信用等级", + "tagIconHeight": "27", + "tagIconPic": "https://img.alicdn.com/imgextra/i3/O1CN01PIYxrZ22FGrmiDphN_!!6000000007090-2-tps-92-45.png", + "tagIconWidth": "53" + } + ] + } + ], + "showInvite": "false", + "skuFilter": "true", + "timePeriodDesc": "近2年", + "total": "300", + "totalFuzzy": "300+", + "totalPage": "19", + "userType": "1" + }, + "ret": [ + "SUCCESS::调用成功" + ], + "traceId": "2150457e17517305331623640e1ad0", + "v": "6.0" +}) diff --git a/jd/tb.py b/jd/tb.py new file mode 100644 index 0000000..e5e2ee0 --- /dev/null +++ b/jd/tb.py @@ -0,0 +1,198 @@ +import time +import random +import re +import json +import threading + +from DrissionPage import ChromiumPage, ChromiumOptions +from sqlalchemy import create_engine, Column, Integer, String, Text, DateTime +from sqlalchemy.orm import sessionmaker, declarative_base + +# =================== 配置部分 =================== +# 浏览器路径(请根据本地实际路径修改) +CHROME_PATH = r'C:\Program Files\Google\Chrome\Application\chrome.exe' + +# 固定商品详情页 URL +TARGET_URL = "https://detail.tmall.com/item.htm?abbucket=1&id=735141569627<k2=1753093866331wbixx4bjhgx78xdlrpyxq&ns=1&priceTId=213e074d17530938630755244e1109&skuId=5667837161089&spm=a21n57.1.hoverItem.2&utparam=%7B%22aplus_abtest%22%3A%228c55408acbff553514850c28e821c3b4%22%7D&xxc=taobaoSearch" +# MySQL 配置 +db_config = { + "host": "192.168.8.88", + "port": 3306, + "user": "root", + "password": "mysql_7sjTXH", # 修改为你的密码 + "database": "jd" +} + +# 初始化数据库连接 +db_url = f"mysql+pymysql://{db_config['user']}:{db_config['password']}@{db_config['host']}:{db_config['port']}/{db_config['database']}?charset=utf8mb4" +engine = create_engine(db_url, echo=False) +Session = sessionmaker(bind=engine) +Base = declarative_base() + + +# 定义淘宝评论模型 +class TaobaoComment(Base): + __tablename__ = 'taobao_comments' + id = Column(Integer, primary_key=True) + product_id = Column(String(50), nullable=False) + user_name = Column(String(100)) + comment_text = Column(Text) + comment_id = Column(String(100)) + picture_urls = Column(Text) # 存储 JSON 字符串 + created_at = Column(DateTime, default=time.strftime('%Y-%m-%d %H:%M:%S')) + comment_date = Column(DateTime) + + +# 创建表(如果不存在) +Base.metadata.create_all(engine) + + +# 全局浏览器实例(只初始化一次) +global_taobao_page = None + + +def get_global_taobao_browser(): + global global_taobao_page + if global_taobao_page is None: + options = ChromiumOptions() + options.set_browser_path(CHROME_PATH) + global_taobao_page = ChromiumPage(options) + return global_taobao_page + + +def extract_json_from_mtop(raw_response: str) -> dict: + # print("原始数据:", raw_response) + + """去除 mtopjsonppcdetail18(...) 等封装,提取真实 JSON""" + match = re.search(r'mtopjsonppcdetail\d+\((\{.*\})\)', raw_response, re.DOTALL) + if match: + try: + return json.loads(match.group(1)) + except json.JSONDecodeError as e: + print("JSON 解析失败:", e) + else: + print("未找到有效的 JSON 数据") + return {} + + +def fetch_taobao_comments(): + page = get_global_taobao_browser() + try: + # 打开固定商品页 + page.get(TARGET_URL) + # time.sleep(5) + + # 向下滚动主页面 + page.scroll.down(150) + # time.sleep(3) + + # 点击“评价”按钮 + element = page.ele('xpath=//div[contains(text(), "全部评价")]') + if element: + element.click() + time.sleep(3) + else: + print("未找到评价按钮") + return [] + + # 开始监听指定请求 + target_url = 'https://h5api.m.tmall.com/h5/mtop.taobao.rate.detaillist.get/6.0/?jsv=2.7.5' + page.listen.start(target_url) + + seen_ids = set() + + print("\n===============================") + print("✅ 自动开始抓取评论,每次滚动到底部后自动保存新评论...") + print("🚫 如需停止程序,请手动关闭浏览器或使用 Ctrl+C 中断") + print("===============================\n") + + while True: + # 发送滚动到底部指令 + page.scroll.to_bottom() + print("已向下滚动到底部,等待接口返回数据...") + + resp = page.listen.wait(timeout=10) + if resp and target_url in resp.url: + raw_body = resp.response.body + json_data = extract_json_from_mtop(raw_body) + + if json_data and 'data' in json_data and 'rateList' in json_data['data']: + batch_comments = json_data['data']['rateList'] + + fresh_comments = [] + for comment in batch_comments: + comment_id = comment.get('id', '') + if not comment_id or comment_id in seen_ids: + continue + + seen_ids.add(comment_id) + fresh_comments.append(comment) + + if fresh_comments: + print(f"✅ 本次获取到 {len(fresh_comments)} 条新评论,正在保存...") + save_taobao_comments_to_db(fresh_comments) # 👈 立即保存 + else: + print("⚠️ 本次无新评论,可能已抓取完毕") + else: + print("🚫 返回数据结构异常,无法提取评论") + else: + print("🚫 未捕获到新的评论数据,请确认是否已滚动并加载出更多评论") + + # 自动等待几秒再滚动 + # time.sleep(random.uniform(3, 5)) + + # 这里不再返回 comments,而是直接实时保存 + + except Exception as e: + print("发生错误:", e) + + + +def save_taobao_comments_to_db(comments): + session = Session() + try: + for comment in comments: + comment_id = comment.get('id', '') + feedback = comment.get('feedback', '无评论内容') + user_nick = comment.get('userNick', '匿名用户') + pic_list = comment.get('feedPicPathList', []) + comment_date = comment.get('feedbackDate', '') + + exists = session.query(TaobaoComment).filter_by(comment_id=comment_id).first() + if exists: + print(f"评论已存在:{comment_id}") + continue + + picture_urls = [url for url in pic_list if url.startswith('//')] + + new_comment = TaobaoComment( + product_id="735141569627", + user_name=user_nick, + comment_text=feedback, + comment_id=comment_id, + picture_urls=json.dumps(picture_urls, ensure_ascii=False), + comment_date=comment_date + ) + session.add(new_comment) + print(f"正在写入评论: {comment_id}") + session.commit() + except Exception as e: + session.rollback() + print("保存失败:", e) + finally: + session.close() + + +# =================== 主程序入口 =================== +if __name__ == '__main__': + print("开始抓取评论...") + + # 获取评论 + comments = fetch_taobao_comments() + if comments: + print(f"成功获取 {len(comments)} 条评论,正在保存到数据库...") + save_taobao_comments_to_db(comments) + else: + print("未获取到任何评论数据。") + + print("浏览器保持打开状态,用于调试。") diff --git a/jd/test.py b/jd/test.py new file mode 100644 index 0000000..83c61e5 --- /dev/null +++ b/jd/test.py @@ -0,0 +1,144 @@ +import time +import random +import json +from DrissionPage import ChromiumPage, ChromiumOptions + +# 设置浏览器路径(请替换为本地 Chrome 的实际安装路径) +chrome_path = r'C:\Program Files\Google\Chrome\Application\chrome.exe' + +# 配置并启动带指定路径的浏览器 +options = ChromiumOptions() +options.set_browser_path(chrome_path) + +# 创建浏览器实例 +page = ChromiumPage(options) + +try: + # 打开京东商品页面 + page.get('https://item.jd.com/100104238904.html#crumb-wrap') + + while True: # 持续运行循环 + try: + # 等待页面加载完成(可手动处理验证码) + time.sleep(random.uniform(1, 6)) + + # 向下滚动主页面 + page.scroll.down(150) + time.sleep(random.uniform(1, 3)) + + # 定位并点击“买家赞不绝口” + element1 = page.ele('xpath=//div[contains(text(), "买家赞不绝口")]') + if element1: + print(f"找到元素:{element1.text}") + element1.click() + time.sleep(random.uniform(2, 4)) + else: + print("未找到第一个元素") + + # 定位并点击“当前商品” + element2 = page.ele('xpath=//div[contains(text(), "当前商品")]') + if element2: + print(f"找到元素:{element2.text}") + element2.click() + time.sleep(random.uniform(2, 4)) + else: + print("未找到第二个元素") + # 定位并点击“图/视频” + element3 = page.ele('xpath=//div[contains(text(), "视频")]') + if element3: + print(f"找到元素:{element3.text}") + element3.click() + time.sleep(random.uniform(2, 4)) + else: + print("未找到第三个元素") + + # 定位弹窗区域 + popup = page.ele('xpath=//*[@id="rateList"]/div/div[3]') + if popup: + # 开始监听目标接口请求 + page.listen.start('https://api.m.jd.com/client.action') + + # 循环滚动直到成功获取新评论数据 + max_retries = 5 # 最大尝试次数 + retry_count = 0 + success = False + + while retry_count < max_retries and not success: + # 随机滚动一定像素 + scroll_amount = random.randint(1000, 4000) + popup.scroll.down(scroll_amount) + print(f"弹窗向下滚动了 {scroll_amount} 像素") + + # 滚动后等待一段时间,模拟真实用户行为 + time.sleep(random.uniform(1, 3)) + + # 等待新的评论数据请求 + resp = page.listen.wait(timeout=5) + + if resp and 'getCommentListPage' in resp.request.postData: + print("成功捕获到新的评论数据请求!") + # 解析 resp.body 中的 JSON 数据 + try: + json_data = resp.response.body + + # 提取评论楼层(第三个楼层) + if 'result' in json_data and 'floors' in json_data['result']: + comment_floor = json_data['result']['floors'][2] # 索引从0开始 + + if 'data' in comment_floor and isinstance(comment_floor['data'], list): + comments = comment_floor['data'] + + print(f"成功提取到 {len(comments)} 条评论:\n") + + for idx, comment in enumerate(comments, 1): + comment_info = comment.get('commentInfo', {}) + + user_name = comment_info.get('userNickName', '匿名用户') + comment_text = comment_info.get('commentData', '无评论内容') + commentId = comment_info.get('commentId', '评价ID') + productId = comment_info.get('productId', '商品ID') + # 提取所有图片链接 + picture_list = comment_info.get('pictureInfoList', []) + picture_urls = [pic.get('largePicURL') for pic in picture_list if pic.get('largePicURL')] + + if picture_urls: + print(f"第 {idx} 条评论:") + print(f"用户名:{user_name}") + print(f"评分:{commentId}") + print(f"商品ID:{productId}") + print(f"评论内容:{comment_text}") + print(f"图片链接:{picture_urls}\n") + else: + print("未找到有效的评论数据或数据格式异常。") + else: + print("返回数据中不包含评论楼层信息。") + except json.JSONDecodeError as je: + print("JSON 解析失败:", je) + except Exception as e: + print("处理评论数据时出错:", e) + else: + print("未捕获到新的评论数据,继续滚动...") + retry_count += 1 + + if not success: + print("多次滚动后仍未获取到有效评论数据,请检查页面结构或网络请求状态。") + else: + print("未找到弹窗元素") + + # 添加随机等待时间以模拟真实用户行为 + wait_time = random.uniform(5, 10) + print(f"等待 {wait_time:.2f} 秒后继续下一轮操作...") + time.sleep(wait_time) + + except Exception as inner_e: + print(f"内部循环发生错误:{inner_e}") + time.sleep(5) # 出错后稍作等待再继续 + +except KeyboardInterrupt: + print("用户中断脚本执行") +except Exception as outer_e: + print(f"外部异常:{outer_e}") +finally: + # 关闭浏览器 + print("正在关闭浏览器...") + # page.quit()