万邦京东获得JD商品评论原数据 API 返回值说明

item_review_app-获得JD商品评论原数据 [查看演示] API测试工具 注册开通

onebound.jd.item_review_app

公共参数

请求地址: https://api-gw.onebound.cn/jd/item_review_app

名称 类型 必须 描述
keyString调用key(必须以GET方式拼接在URL中)
secretString调用密钥
api_nameStringAPI接口名称(包括在请求地址中)[item_search,item_get,item_search_shop等]
cacheString[yes,no]默认yes,将调用缓存的数据,速度比较快
result_typeString[json,jsonu,xml,serialize,var_export]返回数据格式,默认为json,jsonu输出的内容中文可以直接阅读
langString[cn,en,ru]翻译语言,默认cn简体中文
versionStringAPI版本
请求参数

请求参数:num_iid=71619129750&page=1&sort=&is_sku=false&raw_data=

参数说明:item_id:商品ID
page:页数
sort:排序(默认为默认排序,传new为时间最新排序)
is_sku:(默认为全部评论,传true是只看当前商品评论)

响应参数

Version: Date:2026-01-06

名称 类型 必须 示例值 描述
item
Mix 0 [] 获得京东app商品评论原数据
请求示例
	
-- 请求示例 url 默认请求参数已经URL编码处理
curl -i "https://api-gw.onebound.cn/jd/item_review_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=71619129750&page=1&sort=&is_sku=false&raw_data="
<?php

// 请求示例 url 默认请求参数已经URL编码处理
// 本示例代码未加密secret参数明文传输,若要加密请参考:https://open.onebound.cn/help/demo/sdk/demo-sign.php
$method = "GET";
$url = "https://api-gw.onebound.cn/jd/item_review_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=71619129750&page=1&sort=&is_sku=false&raw_data=";
$curl = curl_init();
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $method);
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST,FALSE);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER,FALSE);
curl_setopt($curl, CURLOPT_FAILONERROR, false);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_HEADER, true);
curl_setopt($curl, CURLOPT_ENCODING, "gzip");
var_dump(curl_exec($curl));
?>
<?php
//定义缓存目录和引入文件
define("DIR_RUNTIME","runtime/");
define("DIR_ERROR","runtime/");
define("SECACHE_SIZE","0");
//SDK下载地址 https://open.onebound.cn/help/demo/sdk/onebound-api-sdk.zip
include ("ObApiClient.php");

$obapi = new otao\ObApiClient();
$obapi->api_url = "http://api-gw.onebound.cn/";
$obapi->api_urls = array("http://api-gw.onebound.cn/","http://api-1.onebound.cn/");//备用API服务器
$obapi->api_urls_on = true;//当网络错误时,是否启用备用API服务器
$obapi->api_key = "<您自己的apiKey>";
$obapi->api_secret = "<您自己的apiSecret>";
$obapi->api_version ="";
$obapi->secache_path ="runtime/";
$obapi->secache_time ="86400";
$obapi->cache = true;

$api_data = $obapi->exec(
                array(
	                "api_type" =>"jd",
	                "api_name" =>"item_review_app",
	                "api_params"=>array (
  'num_iid' => '71619129750',
  'page' => '1',
  'sort' => '',
  'is_sku' => 'false',
  'raw_data' => '',
)
                )
            );
 var_dump($api_data);
?>
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.Reader;
import java.net.URL;
import java.nio.charset.Charset;
import org.json.JSONException;
import org.json.JSONObject;
import java.io.PrintWriter;
import java.net.URLConnection;

public class Example {
	private static String readAll(Reader rd) throws IOException {
		StringBuilder sb = new StringBuilder();
		int cp;
		while ((cp = rd.read()) != -1) {
			sb.append((char) cp);
		}
		return  sb.toString();
	}
	public static JSONObject postRequestFromUrl(String url, String body) throws IOException, JSONException {
		URL realUrl = new URL(url);
		URLConnection conn = realUrl.openConnection();
		conn.setDoOutput(true);
		conn.setDoInput(true);
		PrintWriter out = new PrintWriter(conn.getOutputStream());
		out.print(body);
		out.flush();
		InputStream instream = conn.getInputStream();
		try {
			BufferedReader rd = new BufferedReader(new InputStreamReader(instream, Charset.forName("UTF-8")));
			String jsonText = readAll(rd);
			JSONObject json = new JSONObject(jsonText);
			return json;
		} finally {
			instream.close();
		}
	}
	public static JSONObject getRequestFromUrl(String url) throws IOException, JSONException {
		URL realUrl = new URL(url);
		URLConnection conn = realUrl.openConnection();
		InputStream instream = conn.getInputStream();
		try {
			BufferedReader rd = new BufferedReader(new InputStreamReader(instream, Charset.forName("UTF-8")));
			String jsonText = readAll(rd);
			JSONObject json = new JSONObject(jsonText);
			return json;
		} finally {
			instream.close();
		}
	}
	public static void main(String[] args) throws IOException, JSONException {
		// 请求示例 url 默认请求参数已经URL编码处理
		String url = "https://api-gw.onebound.cn/jd/item_review_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=71619129750&page=1&sort=&is_sku=false&raw_data=";
		JSONObject json = getRequestFromUrl(url);
		System.out.println(json.toString());
	}

}
//using System.Net.Security;
//using System.Security.Cryptography.X509Certificates;
private const String method = "GET";
static void Main(string[] args)
{
	String bodys = "";
	// 请求示例 url 默认请求参数已经做URL编码
	String url = "https://api-gw.onebound.cn/jd/item_review_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=71619129750&page=1&sort=&is_sku=false&raw_data=";
	HttpWebRequest httpRequest = null;
	HttpWebResponse httpResponse = null; 
	if (url.Contains("https://"))
	{
		ServicePointManager.ServerCertificateValidationCallback = new RemoteCertificateValidationCallback(CheckValidationResult);
		httpRequest = (HttpWebRequest)WebRequest.CreateDefault(new Uri(url));
	}
	else
	{
		httpRequest = (HttpWebRequest)WebRequest.Create(url);
	}
	httpRequest.Method = method;
	if (0 < bodys.Length)
	{
		byte[] data = Encoding.UTF8.GetBytes(bodys);
		using (Stream stream = httpRequest.GetRequestStream())
		{
		stream.Write(data, 0, data.Length);
		}
	}
	try
	{
		httpResponse = (HttpWebResponse)httpRequest.GetResponse();
	}
	catch (WebException ex)
	{
		httpResponse = (HttpWebResponse)ex.Response;
	}
	Console.WriteLine(httpResponse.StatusCode);
	Console.WriteLine(httpResponse.Method);
	Console.WriteLine(httpResponse.Headers);
	Stream st = httpResponse.GetResponseStream();
	StreamReader reader = new StreamReader(st, Encoding.GetEncoding("utf-8"));
	Console.WriteLine(reader.ReadToEnd());
	Console.WriteLine("\n");
}
public static bool CheckValidationResult(object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors errors)
{
	return true;
}
# coding:utf-8
"""
Compatible for python2.x and python3.x
requirement: pip install requests
"""
from __future__ import print_function
import requests
# 请求示例 url 默认请求参数已经做URL编码
url = "https://api-gw.onebound.cn/jd/item_review_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=71619129750&page=1&sort=&is_sku=false&raw_data="
headers = {
    "Accept-Encoding": "gzip",
    "Connection": "close"
}
if __name__ == "__main__":
    r = requests.get(url, headers=headers)
    json_obj = r.json()
    print(json_obj)
url := fmt.Sprintf("https://api-gw.onebound.cn/jd/item_review_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=71619129750&page=1&sort=&is_sku=false&raw_data=", params)
req, err := http.NewRequest("GET", url, nil)
if err != nil {
    panic(err)
}
req.Header.Set("Authorization", apiKey)

client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
    panic(err)
}
defer resp.Body.Close()

body, err := ioutil.ReadAll(resp.Body)
if err != nil {
    panic(err)
}

fmt.Println(string(body))
fetch('https://api-gw.onebound.cn/jd/item_review_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({"num_iid":"71619129750","page":"1","sort":"","is_sku":"false","raw_data":""})// request parameters here
})
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error(error));
<script src="js/obapi.js"></script>
<script type="text/javascript">
obAPI.config({
    debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
    api_url: "https://api-gw.onebound.cn", // 
    api_key: "<您自己的apiKey>", // 必填,
    api_secret: "<您自己的apiSecret>", //
    lang: "cn", // 
    timestamp: "", // 必填,生成签名的时间戳
    nonceStr: "", // 必填,生成签名的随机串
    signature: "",// 必填,签名
    jsApiList: [] // 必填,需要使用的JS接口列表
});
</script>
<div id="api_data_box"></div>
<script type="text/javascript">
obAPI.exec(
     {
     "api_type":"jd",
     "api_name" : "item_review_app",
     "api_params": {"num_iid":"71619129750","page":"1","sort":"","is_sku":"false","raw_data":""}//num_iid=71619129750&page=1&sort=&is_sku=false&raw_data=,#具体参数请参考文档说明
     },
     function(e){
        document.querySelector("#api_data_box").innerHTML=JSON.stringify(e)
     }
);
</script>
require "net/http"
require "uri"
url = URI("https://api-gw.onebound.cn/jd/item_review_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=71619129750&page=1&sort=&is_sku=false&raw_data=")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body 
import Foundation
 
let url = URL(string: "https://api-gw.onebound.cn/jd/item_review_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=71619129750&page=1&sort=&is_sku=false&raw_data=")!
let task = URLSession.shared.dataTask(with: url) { data, response, error in
    guard let data = data else {
        print("Error: No data was returned")
        return
    }
     
    if let data = String(data: data, encoding: .utf8) {
        print(data)
    }
}
task.resume()
NSURL *myUrl = [NSURL URLWithString:@"https://api-gw.onebound.cn/jd/item_review_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=71619129750&page=1&sort=&is_sku=false&raw_data="];

NSMutableURLRequest *request=[NSMutableURLRequest requestWithURL:myUrl cachePolicy:NSURLRequestReloadIgnoringCacheData timeoutInterval:60.0];

[request setHTTPMethod:@"GET"];
NSError *error;
NSURLResponse *response;

NSData *data = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];

NSString *result = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
NSLog(@"%@",result);
#include<stdio.h>
#include <stdlib.h>
#include<string.h>
#include<curl/curl.h>

int main(){
  CURL *curl;  
  CURLcode res;   
  struct curl_slist *headers=NULL; 

  char url[] = "https://api-gw.onebound.cn/jd/item_review_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=71619129750&page=1&sort=&is_sku=false&raw_data=";
  curl_global_init(CURL_GLOBAL_ALL); 
  curl = curl_easy_init(); 

  if(curl) {
    curl_easy_setopt(curl, CURLOPT_URL,url);
    headers = curl_slist_append(headers, "Content-Type: application/json"); 

    curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers); 
    res = curl_easy_perform(curl);

    if(res != CURLE_OK){
      printf("curl_easy_perform(): %s\n",curl_easy_strerror(res));                     
    }
    curl_easy_cleanup(curl);          
  }
  curl_global_cleanup();
  return 0;
}
#include<iostream>
#include<string>
#include<curl/curl.h>

using namespace std;

static size_t Data(void *ptr, size_t size, size_t nmemb, string *stream)
{
    std::size_t realSize = size *nmemb;
    auto *realPtr = reinterpret_cast<char *>(ptr);

    for (std::size_t i=0;i<realSize;++i) {
        *(stream) += *(realPtr + i);
    }

    return realSize;
}

int main(){

     CURL *curl;
     CURLcode result;
     string readBuffer;
     curl = curl_easy_init();

     if(curl) {

         curl_easy_setopt(curl, CURLOPT_URL, "https://api-gw.onebound.cn/jd/item_review_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=71619129750&page=1&sort=&is_sku=false&raw_data=");
         curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);
         curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, Data);
         curl_easy_setopt(curl, CURLOPT_WRITEDATA, &readBuffer);

         result = curl_easy_perform(curl);

         if(result == CURLE_OK) {
             cout<<readBuffer<<endl;
         }else{
             cerr<<"curl_easy error:"<<curl_easy_strerror(result)<<endl;
         }

         curl_easy_cleanup(curl);
     }
     return 0;
}
const https = require("https");

https.get("https://api-gw.onebound.cn/jd/item_review_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=71619129750&page=1&sort=&is_sku=false&raw_data=", (resp) => {
  let data = "";

  resp.on("data", (chunk) => {
    data += chunk;
  });

  resp.on("end", () => {
    console.log(data);
  });
}).on("error", (err) => {
  console.log("Error: " + err.message);
});
import java.net.HttpURLConnection
import java.net.URL

fun main() {
    val url = URL("https://api-gw.onebound.cn/jd/item_review_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=71619129750&page=1&sort=&is_sku=false&raw_data=")
    val con = url.openConnection() as HttpURLConnection
    con.requestMethod = "GET"

    val responseCode = con.responseCode
    if (responseCode == HttpURLConnection.HTTP_OK) { // success
        val inputLine = con.inputStream.bufferedReader().use { it.readText() }
        println(inputLine)
    } else {
        println("GET request failed")
    }
}
use std::io::{self, Read};
use reqwest;

fn main() -> io::Result<()> {

    let mut resp = reqwest::get("https://api-gw.onebound.cn/jd/item_review_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=71619129750&page=1&sort=&is_sku=false&raw_data=")?;
    let mut content = String::new();
    resp.read_to_string(&mut content)?;

    println!("{}", content);

    Ok(())
}

响应示例
{
    "item": {
        "commentInfo_list": [
            {
                "floorId": "flo_11096",
                "type": "eCustom",
                "mId": "commentlist-ratestar",
                "cf": {
                    "st": {
                        "bgc": "#fff"
                    }
                },
                "data": [

                ],
                "subFloors": [
                    {
                        "floorId": "flo_11099",
                        "type": "eCustom",
                        "mId": "commentlist-label",
                        "cf": {
                            "st": {
                                "bgc": "#fff"
                            }
                        },
                        "data": [

                        ],
                        "subFloors": [
                            {
                                "floorId": "flo_11100",
                                "type": "eCustom",
                                "mId": "commentlist-commonlabel",
                                "cf": {
                                    "st": {
                                        "bgc": "#fff"
                                    }
                                },
                                "data": {
                                    "generalTagList": [
                                        {
                                            "name": "全部",
                                            "identification": "ALL",
                                            "exposureEventId": "",
                                            "count": "5000000",
                                            "type": "0",
                                            "sort": "1",
                                            "isShowZeroTag": false,
                                            "isDefaultTag": true,
                                            "countStr": "99%好评",
                                            "supportDefaultSort": true,
                                            "supportNewSort": true,
                                            "showTopBar": true,
                                            "showFoldComment": true,
                                            "plusSelect": "1",
                                            "tagDesc": {
                                                "dialogDesc": "京东致力于为您提供合法、公正、客观、真实的评价晒单,将采取技术手段对恶意、虚假等不当评价进行处理,以便为您消费决策提供有效参考。",
                                                "icon": "",
                                                "dialogTitle": "京东评价原则",
                                                "jumpUrl": "",
                                                "dialogBtn": "我知道了",
                                                "clerk_type": "1",
                                                "desc": "京东鼓励真实、有用的评价"
                                            }
                                        },
                                        {
                                            "name": "PLUS会员",
                                            "identification": "PLUS",
                                            "exposureEventId": "",
                                            "count": "0",
                                            "type": "8",
                                            "sort": "2",
                                            "isShowZeroTag": true,
                                            "isDefaultTag": true,
                                            "countStr": "精选",
                                            "supportDefaultSort": true,
                                            "supportNewSort": false,
                                            "showTopBar": false,
                                            "showFoldComment": false
                                        },
                                        {
                                            "name": "回头客",
                                            "identification": "REBUY",
                                            "exposureEventId": "",
                                            "count": "200",
                                            "type": "18",
                                            "sort": "2",
                                            "isShowZeroTag": false,
                                            "isDefaultTag": true,
                                            "countStr": "1900+",
                                            "supportDefaultSort": true,
                                            "supportNewSort": false,
                                            "showTopBar": false,
                                            "showFoldComment": false
                                        },
                                        {
                                            "name": "使用后",
                                            "nameIconUrl": "https://img12.360buyimg.com/imagetools/jfs/t1/157438/3/36862/1766/64a3ee2aF1a6a4b47/e993a51a9600ba4b.png",
                                            "grayNameIconUrl": "https://img10.360buyimg.com/imagetools/jfs/t1/159987/6/38365/1751/64a3ee2eFe40fbbc3/12165d6b75a0298c.png",
                                            "identification": "USED",
                                            "exposureEventId": "",
                                            "count": "100",
                                            "type": "9",
                                            "sort": "2",
                                            "isShowZeroTag": false,
                                            "isDefaultTag": true,
                                            "countStr": "实评",
                                            "supportDefaultSort": true,
                                            "supportNewSort": false,
                                            "showTopBar": false,
                                            "showFoldComment": false,
                                            "tipsImageUrl": "https://img14.360buyimg.com/imagetools/jfs/t1/145622/12/35719/2035/649e400dF655f30a6/82235f77e68397f2.png"
                                        },
                                        {
                                            "name": "图/视频",
                                            "identification": "SHAITU",
                                            "exposureEventId": "",
                                            "count": "50000",
                                            "type": "102",
                                            "sort": "3",
                                            "isShowZeroTag": false,
                                            "isDefaultTag": false,
                                            "countStr": "5万+",
                                            "supportDefaultSort": true,
                                            "supportNewSort": true,
                                            "showTopBar": true,
                                            "showFoldComment": false
                                        },
                                        {
                                            "name": "图/视频",
                                            "identification": "YOUTU",
                                            "exposureEventId": "",
                                            "count": "50000",
                                            "type": "4",
                                            "sort": "4",
                                            "isShowZeroTag": false,
                                            "isDefaultTag": true,
                                            "countStr": "5万+",
                                            "supportDefaultSort": true,
                                            "supportNewSort": true,
                                            "showTopBar": true,
                                            "showFoldComment": true
                                        },
                                        {
                                            "name": "追评",
                                            "identification": "ZHUIPING",
                                            "exposureEventId": "CommentsShare_CommentListLabelExpo",
                                            "count": "2000",
                                            "type": "5",
                                            "sort": "5",
                                            "isShowZeroTag": false,
                                            "isDefaultTag": true,
                                            "countStr": "2000+",
                                            "supportDefaultSort": true,
                                            "supportNewSort": true,
                                            "showTopBar": true,
                                            "showFoldComment": true
                                        },
                                        {
                                            "name": "好评",
                                            "identification": "GOOD",
                                            "exposureEventId": "",
                                            "count": "500000",
                                            "type": "3",
                                            "sort": "6",
                                            "isShowZeroTag": false,
                                            "isDefaultTag": true,
                                            "countStr": "50万+",
                                            "supportDefaultSort": true,
                                            "supportNewSort": true,
                                            "showTopBar": true,
                                            "showFoldComment": true
                                        },
                                        {
                                            "name": "中评",
                                            "identification": "NORMAL",
                                            "exposureEventId": "",
                                            "count": "2000",
                                            "type": "2",
                                            "sort": "7",
                                            "isShowZeroTag": false,
                                            "isDefaultTag": true,
                                            "countStr": "2000+",
                                            "supportDefaultSort": true,
                                            "supportNewSort": true,
                                            "showTopBar": true,
                                            "showFoldComment": true
                                        },
                                        {
                                            "name": "差评",
                                            "identification": "BAD",
                                            "exposureEventId": "",
                                            "count": "1000",
                                            "type": "1",
                                            "sort": "8",
                                            "isShowZeroTag": false,
                                            "isDefaultTag": true,
                                            "countStr": "1000+",
                                            "supportDefaultSort": true,
                                            "supportNewSort": true,
                                            "showTopBar": true,
                                            "showFoldComment": true
                                        }
                                    ]
                                }
                            },
                            {
                                "floorId": "flo_15001",
                                "type": "eCustom",
                                "mId": "commentlist-aioverview-v15",
                                "tmpId": "Aioverview",
                                "cf": {
                                    "st": {
                                        "bgc": "#fff"
                                    }
                                },
                                "data": {
                                    "backgroundImg": "https://img11.360buyimg.com/imagetools/jfs/t1/227691/21/39120/17295/67ca99bdFf5a8365d/f9989c42fdd65392.png",
                                    "darkBackgroundImg": "https://img14.360buyimg.com/imagetools/jfs/t1/256552/5/30041/1555/67caa9bdFfad5acf6/a426842794e6eb33.png",
                                    "logoUrl": "https://storage.360buyimg.com/calorie-bucket/thinning/shareOrder/commentList/AILabel.json",
                                    "title": "AI划重点",
                                    "updateDate": "来自已购用户真实评价",
                                    "overviewText": "",
                                    "aiSemanticsTagList": [
                                        {
                                            "tagId": "c455d35014634156f0aca80ba3024d35##V10003T38",
                                            "name": "电池超耐用",
                                            "count": "6057",
                                            "type": "4"
                                        },
                                        {
                                            "tagId": "f984c621751190d34423a8c4251cbd6e##V10003T38",
                                            "name": "电池电量足",
                                            "count": "4120",
                                            "type": "4"
                                        },
                                        {
                                            "tagId": "22f896dd0630ab079da6bb8464b1e525##V10003T38",
                                            "name": "用起来超方便",
                                            "count": "3779",
                                            "type": "4"
                                        },
                                        {
                                            "tagId": "6dee6002f7c7d74f452004ca57679845##V10003T38",
                                            "name": "充电超快",
                                            "count": "496",
                                            "type": "4"
                                        },
                                        {
                                            "tagId": "ffd1ecdb40ed463383d1f34dadf87be1##V10003T38",
                                            "name": "尺寸合适",
                                            "count": "274",
                                            "type": "4"
                                        },
                                        {
                                            "tagId": "b225e15eac451bdc4f19835a407239ce##V10003T38",
                                            "name": "握感舒适",
                                            "count": "172",
                                            "type": "4"
                                        },
                                        {
                                            "tagId": "2d3ad8180edd8a8c61f46231478d4923##V10003T38",
                                            "name": "颜色超鲜艳",
                                            "count": "1381",
                                            "type": "4"
                                        },
                                        {
                                            "tagId": "4efffe75bc1ba650929f3debba920151##V10003T38",
                                            "name": "多场景适用",
                                            "count": "953",
                                            "type": "4"
                                        },
                                        {
                                            "tagId": "10621f988bd27be6c0ba1b71429a459e##V10003T38",
                                            "name": "环保无汞",
                                            "count": "618",
                                            "type": "4"
                                        },
                                        {
                                            "tagId": "415195da2abd7e8bbfa0b45055b04e8c##V10003T38",
                                            "name": "适合玩具使用",
                                            "count": "529",
                                            "type": "4"
                                        },
                                        {
                                            "tagId": "515c665bcd12146ecf86774b3061bb25##V10003T38",
                                            "name": "孩子超喜欢",
                                            "count": "292",
                                            "type": "4"
                                        },
                                        {
                                            "tagId": "89bdb978df179e6b4332065a96d196ea##V10003T38",
                                            "name": "适配遥控器",
                                            "count": "153",
                                            "type": "4"
                                        }
                                    ],
                                    "floorType": "8",
                                    "rateLabelList": [

                                    ],
                                    "maxRateLabelLines": 0,
                                    "topicArray": [
                                        {
                                            "title": "商品亮点",
                                            "content": "电量持久稳定,无汞环保设计安全可靠,适合遥控器、玩具等多场景家用设备使用。"
                                        },
                                        {
                                            "title": "口碑数据",
                                            "content": "超过6成买家强调续航能力强劲,另有约58%用户青睐彩虹色外观设计。"
                                        },
                                        {
                                            "title": "买家原声",
                                            "content": "“给孩子的玩具装上后,玩了好几天还有电,智能门锁和遥控器也能用很久。”"
                                        }
                                    ],
                                    "summaryText": "总结自近期发布的真实买家评价",
                                    "showLike": "1",
                                    "dataVersion": "8",
                                    "touchstone_expids": "tsabtest|base64|VUdDcHJvZHVjdF83MDUzNHxUZXN0cHJlNzpVR0Nwcm9kdWN0XzYwMTg4fFRlc3Q6QVBQU1hfODMwNDN8VGVzdA|tsabtest"
                                }
                            }
                        ]
                    }
                ]
            },
            {
                "floorId": "flo_11102",
                "type": "eCustom",
                "mId": "commentlist-sort",
                "cf": {
                    "st": {
                        "bgc": "#fff"
                    }
                },
                "data": [

                ]
            },
            {
                "floorId": "flo_11103",
                "type": "eCustom",
                "mId": "commentlist-list",
                "cf": {
                    "st": {
                        "bgc": "#fff"
                    }
                },
                "data": [
                    {
                        "commentInfo": {
                            "userNickName": "谦***逸",
                            "userImgURL": "https://storage.360buyimg.com/i.imageUpload/36363731393133322d31373632363331343635363435353138353838_sma.jpg",
                            "commentId": "103534090155788969",
                            "commentShareUrl": "100068363857&commentId=T6NdPMRziJUtdR-DXK6QyXmI",
                            "wareAttribute": [
                                {
                                    "颜色": "碱性7号"
                                },
                                {
                                    "型号": "【PLUS极能档】40节-会员装"
                                }
                            ],
                            "afterComment": [

                            ],
                            "noCommentMessage": "用户未及时作出评价哦~",
                            "haveLiked": "0",
                            "imageStatusText": "",
                            "iconList": [
                                {
                                    "iconId": "member",
                                    "iconType": "0",
                                    "iconTagId": "tab_3841",
                                    "iconJumpUrl": "",
                                    "iconTagType": "",
                                    "iconHigh": "14"
                                }
                            ],
                            "tagCommentContent": "京东PLUS会员的专属福利果然靠谱!这款超性能碱性电池不仅续航能打,极端温度下也能稳定输出,冬天给户外用的设备供电完全没问题。铝合金外壳抗腐蚀耐损耗,比普通电池耐用太多,而且包装简洁易存放,拆开后也不会杂乱。对比了多款电池,它在性能和价格上平衡得恰到好处,加上京东完善的售后保障,买得放心用得安心,已经回购好几次了,推荐给所有PLUS会员!",
                            "carTagInfo": "",
                            "ownerStatus": "0",
                            "productId": "100068363857",
                            "buyCount": 19,
                            "buyCountText": "该店铺购买≥10次",
                            "commentDate": "2025-12-23 12:03:50",
                            "commentScore": "5",
                            "commentScoreText": "超赞",
                            "praiseCnt": "0",
                            "praiseText": "有用",
                            "beforePraiseIcon": "https://img11.360buyimg.com/imagetools/jfs/t1/230919/21/2961/1669/6551f925Fd0b7b52d/d58d93a9f2a6a486.png",
                            "afterPraiseIcon": "https://img10.360buyimg.com/imagetools/jfs/t1/225107/2/3274/4306/6551f925Fe5873551/6236a511983b6cd0.png",
                            "replyText": "回复",
                            "replyIcon": "https://img10.360buyimg.com/imagetools/jfs/t1/225614/12/1508/705/6551f925Fc2990067/ef456e65cae02b91.png",
                            "replyCnt": "0",
                            "commentData": "京东PLUS会员的专属福利果然靠谱!这款超性能碱性电池不仅续航能打,极端温度下也能稳定输出,冬天给户外用的设备供电完全没问题。铝合金外壳抗腐蚀耐损耗,比普通电池耐用太多,而且包装简洁易存放,拆开后也不会杂乱。对比了多款电池,它在性能和价格上平衡得恰到好处,加上京东完善的售后保障,买得放心用得安心,已经回购好几次了,推荐给所有PLUS会员!",
                            "pictureInfoList": [
                                {
                                    "picURL": "https://img30.360buyimg.com/shaidan/s300x300_jfs/t1/373609/4/16933/257633/694a14a4F6c7e40a0/00a95e87e0751fa1.jpg.dpg",
                                    "largePicURL": "https://img30.360buyimg.com/shaidan/s1080x1080_jfs/t1/373609/4/16933/257633/694a14a4F6c7e40a0/00a95e87e0751fa1.jpg.dpg",
                                    "mediaType": "1",
                                    "liveShooting": "0"
                                },
                                {
                                    "picURL": "https://img30.360buyimg.com/shaidan/s300x300_jfs/t1/376048/26/19088/136417/694a14a6Fefac88d8/00a95e87e0b90d68.jpg.dpg",
                                    "largePicURL": "https://img30.360buyimg.com/shaidan/s1080x1080_jfs/t1/376048/26/19088/136417/694a14a6Fefac88d8/00a95e87e0b90d68.jpg.dpg",
                                    "mediaType": "1",
                                    "showOrderMediaId": "915498755",
                                    "liveShooting": "0"
                                },
                                {
                                    "picURL": "https://img30.360buyimg.com/shaidan/s300x300_jfs/t1/380239/39/8460/262619/694a14a5F95531056/00a95e87e0476118.jpg.dpg",
                                    "largePicURL": "https://img30.360buyimg.com/shaidan/s1080x1080_jfs/t1/380239/39/8460/262619/694a14a5F95531056/00a95e87e0476118.jpg.dpg",
                                    "mediaType": "1",
                                    "showOrderMediaId": "273782554",
                                    "liveShooting": "0"
                                },
                                {
                                    "picURL": "https://img30.360buyimg.com/shaidan/s300x300_jfs/t1/381962/31/5463/270826/694a14a5F78a73b35/00a95e87e0fa7305.jpg.dpg",
                                    "largePicURL": "https://img30.360buyimg.com/shaidan/s1080x1080_jfs/t1/381962/31/5463/270826/694a14a5F78a73b35/00a95e87e0fa7305.jpg.dpg",
                                    "mediaType": "1",
                                    "liveShooting": "0"
                                },
                                {
                                    "picURL": "https://img30.360buyimg.com/shaidan/s300x300_jfs/t1/383578/19/5592/389044/694a14a4F62575f9b/00a97e05e8a17cc9.jpg.dpg",
                                    "largePicURL": "https://img30.360buyimg.com/shaidan/s1080x1080_jfs/t1/383578/19/5592/389044/694a14a4F62575f9b/00a97e05e8a17cc9.jpg.dpg",
                                    "mediaType": "1",
                                    "showOrderMediaId": "63079748",
                                    "liveShooting": "0"
                                }
                            ],
                            "guid": "T6NdPMRziJUtdR-DXK6QyXmI",
                            "maidianInfo": "89096;39000;39670_100067970489_全部_1_1_T6NdPMRziJUtdR-DXK6QyXmI_-100__-100",
                            "testId": "cmt",
                            "imageStatus": "1",
                            "excellentCommentIcon": "",
                            "officerLevel": "4",
                            "usedIconUrl": "https://img30.360buyimg.com/jdmonitor/jfs/t1/182782/12/36893/2765/64e5d52eFa1521fe3/5c5463ad761a8b7c.png",
                            "commonExcellentComment": "https://img12.360buyimg.com/imagetools/jfs/t1/230854/32/13832/17553/65dc2da8F281458bd/7011f6409622c0a5.png",
                            "blackCommonExcellentComment": "https://img11.360buyimg.com/imagetools/jfs/t1/102569/34/47413/19409/65e53f7aF297dde93/fe99faa0a797a0a4.png",
                            "productSpecifications": "已购 碱性7号 【PLUS极能档】40节-会员装",
                            "newCommentDate": "2025-12-23",
                            "repurchaseInfo": "该店铺购买≥10次",
                            "plusUrl": "https://img14.360buyimg.com/img/jfs/t1/277700/12/22783/7087/6800a0d5Fca71724a/d802d331c10cf16c.png",
                            "highlightList": [

                            ],
                            "carOwner": "",
                            "showQuestion": "0"
                        }
                    },
                    {
                        "commentInfo": {
                            "userNickName": "小曾同學",
                            "userImgURL": "https://storage.360buyimg.com/i.imageUpload/323139393335312d35343937343531363839383139353733373232_sma.jpg",
                            "commentId": "103614860156328601",
                            "commentShareUrl": "100273282726&commentId=T6NdP8ZzgJotdR-AWKSQxn-A",
                            "wareAttribute": [
                                {
                                    "颜色": "碱性5/7号混装"
                                },
                                {
                                    "型号": "【超划算】40节-彩虹装"
                                }
                            ],
                            "afterComment": [

                            ],
                            "noCommentMessage": "用户未及时作出评价哦~",
                            "haveLiked": "0",
                            "imageStatusText": "",
                            "iconList": [
                                {
                                    "iconId": "member",
                                    "iconType": "0",
                                    "iconTagId": "tab_3841",
                                    "iconJumpUrl": "",
                                    "iconTagType": "",
                                    "iconHigh": "14"
                                }
                            ],
                            "tagCommentContent": "这款彩虹装的碱性电池真的挖到宝了!家里孩子的玩具、血压测量仪还有键盘都能用上,5号7号混装特别贴心,不用单独买不同型号。续航一点不输南孚这类大牌,彩色外观孩子也超喜欢,关键性价比还高,一大包能用好久。而且是环保电池,没电了直接丢生活垃圾里就行,京东物流也给力,送货快还上门,整体体验超棒,已经列入居家常备清单了!",
                            "carTagInfo": "",
                            "ownerStatus": "0",
                            "productId": "100273282726",
                            "buyCount": 81,
                            "buyCountText": "该店铺购买≥10次",
                            "commentDate": "2025-12-31 17:04:04",
                            "commentScore": "5",
                            "commentScoreText": "超赞",
                            "praiseCnt": "0",
                            "praiseText": "有用",
                            "beforePraiseIcon": "https://img11.360buyimg.com/imagetools/jfs/t1/230919/21/2961/1669/6551f925Fd0b7b52d/d58d93a9f2a6a486.png",
                            "afterPraiseIcon": "https://img10.360buyimg.com/imagetools/jfs/t1/225107/2/3274/4306/6551f925Fe5873551/6236a511983b6cd0.png",
                            "replyText": "回复",
                            "replyIcon": "https://img10.360buyimg.com/imagetools/jfs/t1/225614/12/1508/705/6551f925Fc2990067/ef456e65cae02b91.png",
                            "replyCnt": "0",
                            "commentData": "这款彩虹装的碱性电池真的挖到宝了!家里孩子的玩具、血压测量仪还有键盘都能用上,5号7号混装特别贴心,不用单独买不同型号。续航一点不输南孚这类大牌,彩色外观孩子也超喜欢,关键性价比还高,一大包能用好久。而且是环保电池,没电了直接丢生活垃圾里就行,京东物流也给力,送货快还上门,整体体验超棒,已经列入居家常备清单了!",
                            "pictureInfoList": [
                                {
                                    "picURL": "https://img30.360buyimg.com/shaidan/s300x300_jfs/t1/372871/1/21278/110067/6954e703F55cbeb14/00a93bc4fb9dbf29.jpg.dpg",
                                    "largePicURL": "https://img30.360buyimg.com/shaidan/s1080x1080_jfs/t1/372871/1/21278/110067/6954e703F55cbeb14/00a93bc4fb9dbf29.jpg.dpg",
                                    "mediaType": "1",
                                    "liveShooting": "0"
                                },
                                {
                                    "picURL": "https://img30.360buyimg.com/shaidan/s300x300_jfs/t1/383461/25/9706/92992/6954e703Fea6f1488/00a93bc4fb403b25.jpg.dpg",
                                    "largePicURL": "https://img30.360buyimg.com/shaidan/s1080x1080_jfs/t1/383461/25/9706/92992/6954e703Fea6f1488/00a93bc4fb403b25.jpg.dpg",
                                    "mediaType": "1",
                                    "liveShooting": "0"
                                },
                                {
                                    "picURL": "https://img30.360buyimg.com/shaidan/s300x300_jfs/t1/380182/24/16717/97793/6954e703Fc1f0a923/00a93bc4fbe1f266.jpg.dpg",
                                    "largePicURL": "https://img30.360buyimg.com/shaidan/s1080x1080_jfs/t1/380182/24/16717/97793/6954e703Fc1f0a923/00a93bc4fbe1f266.jpg.dpg",
                                    "mediaType": "1",
                                    "showOrderMediaId": "864877804",
                                    "liveShooting": "0"
                                }
                            ],
                            "guid": "T6NdP8ZzgJotdR-AWKSQxn-A",
                            "maidianInfo": "89096;39000;39670_100067970489_全部_1_2_T6NdP8ZzgJotdR-AWKSQxn-A_-100__-100",
                            "testId": "cmt",
                            "imageStatus": "1",
                            "excellentCommentIcon": "",
                            "officerLevel": "3",
                            "usedIconUrl": "https://img30.360buyimg.com/jdmonitor/jfs/t1/182782/12/36893/2765/64e5d52eFa1521fe3/5c5463ad761a8b7c.png",
                            "commonExcellentComment": "https://img12.360buyimg.com/imagetools/jfs/t1/230854/32/13832/17553/65dc2da8F281458bd/7011f6409622c0a5.png",
                            "blackCommonExcellentComment": "https://img11.360buyimg.com/imagetools/jfs/t1/102569/34/47413/19409/65e53f7aF297dde93/fe99faa0a797a0a4.png",
                            "productSpecifications": "已购 碱性5/7号混装 【超划算】40节-彩虹装",
                            "newCommentDate": "2025-12-31",
                            "repurchaseInfo": "该店铺购买≥10次",
                            "plusUrl": "https://img14.360buyimg.com/img/jfs/t1/277700/12/22783/7087/6800a0d5Fca71724a/d802d331c10cf16c.png",
                            "highlightList": [

                            ],
                            "carOwner": "",
                            "showQuestion": "0"
                        }
                    },
                    {
                        "commentInfo": {
                            "userNickName": "3***j",
                            "userImgURL": "https://storage.360buyimg.com/default.image/6a645f6465665f696d675f393836323131373632333134353935323236_sma.jpg",
                            "commentId": "103561160162718302",
                            "commentShareUrl": "100007385962&commentId=T6NdPMF2iZotdRyEXKeQw3-D",
                            "wareAttribute": [
                                {
                                    "颜色": "碱性7号"
                                },
                                {
                                    "型号": "【超划算】40节-彩虹装"
                                }
                            ],
                            "afterComment": [

                            ],
                            "noCommentMessage": "用户未及时作出评价哦~",
                            "haveLiked": "0",
                            "imageStatusText": "",
                            "iconList": [
                                {
                                    "iconId": "member",
                                    "iconType": "0",
                                    "iconTagId": "tab_3841",
                                    "iconJumpUrl": "",
                                    "iconTagType": "",
                                    "iconHigh": "14"
                                },
                                {
                                    "iconId": "shopBought",
                                    "iconType": "3",
                                    "iconTagId": "tab_3846",
                                    "iconJumpUrl": "",
                                    "iconTagType": "",
                                    "iconHigh": "14"
                                }
                            ],
                            "tagCommentContent": "京东京造7号电池40节彩虹装好评\n入手了这款京东京造的7号电池,简直太惊喜了!40节彩虹装不仅包装吸睛,性价比也超高。电池性能强劲,无铅无汞设计,环保又安全。无论是家里的血压计、血糖仪,还是指纹锁、遥控器,甚至孩子的玩具,它都能完美适配,续航持久,从来没出现过电量不足的情况。碱性超性能,确实名不虚传!京东自营发货也超级快,包装严实,一次非常满意的购物体验,强烈推荐给有需要的朋友们!",
                            "carTagInfo": "",
                            "ownerStatus": "0",
                            "productId": "100007385962",
                            "buyCount": 38,
                            "buyCountText": "该店铺购买≥10次",
                            "commentDate": "2025-12-26 11:25:57",
                            "commentScore": "5",
                            "commentScoreText": "超赞",
                            "praiseCnt": "0",
                            "praiseText": "有用",
                            "beforePraiseIcon": "https://img11.360buyimg.com/imagetools/jfs/t1/230919/21/2961/1669/6551f925Fd0b7b52d/d58d93a9f2a6a486.png",
                            "afterPraiseIcon": "https://img10.360buyimg.com/imagetools/jfs/t1/225107/2/3274/4306/6551f925Fe5873551/6236a511983b6cd0.png",
                            "replyText": "回复",
                            "replyIcon": "https://img10.360buyimg.com/imagetools/jfs/t1/225614/12/1508/705/6551f925Fc2990067/ef456e65cae02b91.png",
                            "replyCnt": "0",
                            "commentData": "京东京造7号电池40节彩虹装好评\n入手了这款京东京造的7号电池,简直太惊喜了!40节彩虹装不仅包装吸睛,性价比也超高。电池性能强劲,无铅无汞设计,环保又安全。无论是家里的血压计、血糖仪,还是指纹锁、遥控器,甚至孩子的玩具,它都能完美适配,续航持久,从来没出现过电量不足的情况。碱性超性能,确实名不虚传!京东自营发货也超级快,包装严实,一次非常满意的购物体验,强烈推荐给有需要的朋友们!",
                            "pictureInfoList": [
                                {
                                    "picURL": "https://img30.360buyimg.com/shaidan/s300x300_jfs/t1/383421/9/8390/2909783/694e0044Fc07904c0/00a9c00000dcc8ce.jpg.dpg",
                                    "largePicURL": "https://img30.360buyimg.com/shaidan/s1080x1080_jfs/t1/383421/9/8390/2909783/694e0044Fc07904c0/00a9c00000dcc8ce.jpg.dpg",
                                    "mediaType": "1",
                                    "liveShooting": "0"
                                },
                                {
                                    "picURL": "https://img30.360buyimg.com/shaidan/s300x300_jfs/t1/379796/21/12241/2275486/694e0044F64df1281/00a9c00000c2c078.jpg.dpg",
                                    "largePicURL": "https://img30.360buyimg.com/shaidan/s1080x1080_jfs/t1/379796/21/12241/2275486/694e0044F64df1281/00a9c00000c2c078.jpg.dpg",
                                    "mediaType": "1",
                                    "liveShooting": "0"
                                }
                            ],
                            "guid": "T6NdPMF2iZotdRyEXKeQw3-D",
                            "maidianInfo": "89096;39000;39670_100067970489_全部_1_3_T6NdPMF2iZotdRyEXKeQw3-D_-100__-100",
                            "testId": "cmt",
                            "imageStatus": "1",
                            "excellentCommentIcon": "",
                            "officerLevel": "4",
                            "productSpecifications": "已购 碱性7号 【超划算】40节-彩虹装",
                            "newCommentDate": "2025-12-26",
                            "repurchaseInfo": "该店铺购买≥10次",
                            "plusUrl": "https://img14.360buyimg.com/img/jfs/t1/277700/12/22783/7087/6800a0d5Fca71724a/d802d331c10cf16c.png",
                            "highlightList": [

                            ],
                            "carOwner": "",
                            "showQuestion": "0"
                        }
                    },
                    {
                        "commentInfo": {
                            "userNickName": "得Ai代的代",
                            "userImgURL": "https://img11.360buyimg.com/imagetools/jfs/t1/230346/8/14129/4481/65dc3041Fb741f6e6/6170c2507f0f70c3.png",
                            "commentId": "103531510162926018",
                            "commentShareUrl": "100011643990&commentId=T6NdPMR2jZ0tdRyEUqSewH6J",
                            "wareAttribute": [
                                {
                                    "颜色": "碱性5/7号混装"
                                },
                                {
                                    "型号": "【居家常备】24节-彩虹装"
                                }
                            ],
                            "afterComment": [

                            ],
                            "noCommentMessage": "用户未及时作出评价哦~",
                            "haveLiked": "0",
                            "imageStatusText": "",
                            "iconList": [
                                {
                                    "iconId": "member",
                                    "iconType": "0",
                                    "iconTagId": "tab_3841",
                                    "iconJumpUrl": "",
                                    "iconTagType": "",
                                    "iconHigh": "14"
                                }
                            ],
                            "tagCommentContent": "家里电子设备多,特意囤了这款24节混合装电池,5号7号搭配刚好满足需求。彩虹色外壳颜值高,还能快速区分用途,再也不怕混用拿错。作为碱性电池,续航超给力,指纹锁装了三个月电量依旧充足,孩子的电动玩具也能连续玩很久不&ldquo;掉电&rdquo;。最放心的是无铅无汞环保设计,防漏液技术到位,用在血压计这种精密设备上也靠谱,不用担心腐蚀损坏。折算下来单节价格实惠,24节够全家用上大半年,性价比拉满,已经推荐给身边朋友,闭眼囤不亏!",
                            "carTagInfo": "",
                            "ownerStatus": "0",
                            "productId": "100011643990",
                            "buyCount": 3,
                            "buyCountText": "该店铺购买≥2次",
                            "commentDate": "2025-12-30 21:41:47",
                            "commentScore": "5",
                            "commentScoreText": "超赞",
                            "praiseCnt": "0",
                            "praiseText": "有用",
                            "beforePraiseIcon": "https://img11.360buyimg.com/imagetools/jfs/t1/230919/21/2961/1669/6551f925Fd0b7b52d/d58d93a9f2a6a486.png",
                            "afterPraiseIcon": "https://img10.360buyimg.com/imagetools/jfs/t1/225107/2/3274/4306/6551f925Fe5873551/6236a511983b6cd0.png",
                            "replyText": "回复",
                            "replyIcon": "https://img10.360buyimg.com/imagetools/jfs/t1/225614/12/1508/705/6551f925Fc2990067/ef456e65cae02b91.png",
                            "replyCnt": "0",
                            "commentData": "家里电子设备多,特意囤了这款24节混合装电池,5号7号搭配刚好满足需求。彩虹色外壳颜值高,还能快速区分用途,再也不怕混用拿错。作为碱性电池,续航超给力,指纹锁装了三个月电量依旧充足,孩子的电动玩具也能连续玩很久不&ldquo;掉电&rdquo;。最放心的是无铅无汞环保设计,防漏液技术到位,用在血压计这种精密设备上也靠谱,不用担心腐蚀损坏。折算下来单节价格实惠,24节够全家用上大半年,性价比拉满,已经推荐给身边朋友,闭眼囤不亏!",
                            "pictureInfoList": [
                                {
                                    "picURL": "https://img30.360buyimg.com/shaidan/s300x300_jfs/t1/373575/27/21397/2725910/6953d699Ff1efcf30/00a9000c00ae6db2.jpg.dpg",
                                    "largePicURL": "https://img30.360buyimg.com/shaidan/s1080x1080_jfs/t1/373575/27/21397/2725910/6953d699Ff1efcf30/00a9000c00ae6db2.jpg.dpg",
                                    "mediaType": "1",
                                    "showOrderMediaId": "1093226104",
                                    "liveShooting": "0"
                                },
                                {
                                    "picURL": "https://img30.360buyimg.com/shaidan/s300x300_jfs/t1/382759/23/11758/3252743/6953d69aF31336a4e/00a9000c0099ca55.jpg.dpg",
                                    "largePicURL": "https://img30.360buyimg.com/shaidan/s1080x1080_jfs/t1/382759/23/11758/3252743/6953d69aF31336a4e/00a9000c0099ca55.jpg.dpg",
                                    "mediaType": "1",
                                    "showOrderMediaId": "234554858",
                                    "liveShooting": "0"
                                }
                            ],
                            "guid": "T6NdPMR2jZ0tdRyEUqSewH6J",
                            "maidianInfo": "89096;39000;39670_100067970489_全部_1_4_T6NdPMR2jZ0tdRyEUqSewH6J_-100__-100",
                            "testId": "cmt",
                            "imageStatus": "1",
                            "excellentCommentIcon": "",
                            "officerLevel": "3",
                            "usedIconUrl": "https://img30.360buyimg.com/jdmonitor/jfs/t1/182782/12/36893/2765/64e5d52eFa1521fe3/5c5463ad761a8b7c.png",
                            "commonExcellentComment": "https://img12.360buyimg.com/imagetools/jfs/t1/230854/32/13832/17553/65dc2da8F281458bd/7011f6409622c0a5.png",
                            "blackCommonExcellentComment": "https://img11.360buyimg.com/imagetools/jfs/t1/102569/34/47413/19409/65e53f7aF297dde93/fe99faa0a797a0a4.png",
                            "productSpecifications": "已购 碱性5/7号混装 【居家常备】24节-彩虹装",
                            "newCommentDate": "2025-12-30",
                            "repurchaseInfo": "该店铺购买≥2次",
                            "plusUrl": "https://img14.360buyimg.com/img/jfs/t1/277700/12/22783/7087/6800a0d5Fca71724a/d802d331c10cf16c.png",
                            "highlightList": [

                            ],
                            "carOwner": "",
                            "showQuestion": "0"
                        }
                    },
                    {
                        "commentInfo": {
                            "userNickName": "棠***飞",
                            "userImgURL": "https://storage.360buyimg.com/i.imageUpload/c2e4d2b6cedec7e93030303031363333383734383935393538_sma.jpg",
                            "commentId": "103080660154051072",
                            "commentShareUrl": "100007385962&commentId=T6NdOc93jpotdR-CW6OZwHiD",
                            "wareAttribute": [
                                {
                                    "颜色": "碱性7号"
                                },
                                {
                                    "型号": "【超划算】40节-彩虹装"
                                }
                            ],
                            "afterComment": [

                            ],
                            "noCommentMessage": "用户未及时作出评价哦~",
                            "haveLiked": "0",
                            "imageStatusText": "",
                            "iconList": [
                                {
                                    "iconId": "member",
                                    "iconType": "0",
                                    "iconTagId": "tab_3841",
                                    "iconJumpUrl": "",
                                    "iconTagType": "",
                                    "iconHigh": "14"
                                }
                            ],
                            "tagCommentContent": "作为京东京造7号彩虹电池的忠实用户,我必须说这40节彩虹装彻底解决了我的囤货焦虑。最让我惊喜的是环保无铅汞配方,家里有血压计和血糖仪的老人用着特别安心,拆封时完全闻不到刺鼻味道。1250mAh大容量真不是吹的,给儿童玩具车装上后能连续玩3个月,遥控器换一次电能用大半年,实测电压波动比普通碱性电池小很多。\n彩虹渐变配色简直是强迫症福音,再也不怕拿错新旧电池了。价格更是碾压南孚,活动时22.15元能抱走40节,算下来每节不到6毛钱,比超市单买便宜一半。不过要提醒大家,装血压计这类精密仪器时建议选新电池,旧电池偶尔会出现电压不稳的情况。总之,这个彩虹装绝对是家庭刚需品的性价比之王!",
                            "carTagInfo": "",
                            "ownerStatus": "0",
                            "productId": "100007385962",
                            "buyCount": 55,
                            "buyCountText": "该店铺购买≥10次",
                            "commentDate": "2025-12-31 14:39:31",
                            "commentScore": "5",
                            "commentScoreText": "超赞",
                            "praiseCnt": "0",
                            "praiseText": "有用",
                            "beforePraiseIcon": "https://img11.360buyimg.com/imagetools/jfs/t1/230919/21/2961/1669/6551f925Fd0b7b52d/d58d93a9f2a6a486.png",
                            "afterPraiseIcon": "https://img10.360buyimg.com/imagetools/jfs/t1/225107/2/3274/4306/6551f925Fe5873551/6236a511983b6cd0.png",
                            "replyText": "回复",
                            "replyIcon": "https://img10.360buyimg.com/imagetools/jfs/t1/225614/12/1508/705/6551f925Fc2990067/ef456e65cae02b91.png",
                            "replyCnt": "0",
                            "commentData": "作为京东京造7号彩虹电池的忠实用户,我必须说这40节彩虹装彻底解决了我的囤货焦虑。最让我惊喜的是环保无铅汞配方,家里有血压计和血糖仪的老人用着特别安心,拆封时完全闻不到刺鼻味道。1250mAh大容量真不是吹的,给儿童玩具车装上后能连续玩3个月,遥控器换一次电能用大半年,实测电压波动比普通碱性电池小很多。\n彩虹渐变配色简直是强迫症福音,再也不怕拿错新旧电池了。价格更是碾压南孚,活动时22.15元能抱走40节,算下来每节不到6毛钱,比超市单买便宜一半。不过要提醒大家,装血压计这类精密仪器时建议选新电池,旧电池偶尔会出现电压不稳的情况。总之,这个彩虹装绝对是家庭刚需品的性价比之王!",
                            "pictureInfoList": [
                                {
                                    "picURL": "https://img30.360buyimg.com/shaidan/s300x300_jfs/t1/384254/20/3282/61344/6954c51fFe38b324f/00a94cc65545c21d.jpg.dpg",
                                    "largePicURL": "https://img30.360buyimg.com/shaidan/s1080x1080_jfs/t1/384254/20/3282/61344/6954c51fFe38b324f/00a94cc65545c21d.jpg.dpg",
                                    "mediaType": "1",
                                    "showOrderMediaId": "2031455445",
                                    "liveShooting": "0"
                                },
                                {
                                    "picURL": "https://img30.360buyimg.com/shaidan/s300x300_jfs/t1/375103/15/22041/158857/6954c522Fb07a35a9/00a94cc654ad27f4.jpg.dpg",
                                    "largePicURL": "https://img30.360buyimg.com/shaidan/s1080x1080_jfs/t1/375103/15/22041/158857/6954c522Fb07a35a9/00a94cc654ad27f4.jpg.dpg",
                                    "mediaType": "1",
                                    "liveShooting": "0"
                                },
                                {
                                    "picURL": "https://img30.360buyimg.com/shaidan/s300x300_jfs/t1/382216/26/11106/115796/6954c520F66afedd6/00a94cc65d8c1ce6.jpg.dpg",
                                    "largePicURL": "https://img30.360buyimg.com/shaidan/s1080x1080_jfs/t1/382216/26/11106/115796/6954c520F66afedd6/00a94cc65d8c1ce6.jpg.dpg",
                                    "mediaType": "1",
                                    "showOrderMediaId": "645744820",
                                    "liveShooting": "0"
                                }
                            ],
                            "guid": "T6NdOc93jpotdR-CW6OZwHiD",
                            "maidianInfo": "89096;39000;39670_100067970489_全部_1_5_T6NdOc93jpotdR-CW6OZwHiD_-100__-100",
                            "testId": "cmt",
                            "imageStatus": "1",
                            "excellentCommentIcon": "",
                            "officerLevel": "2",
                            "usedIconUrl": "https://img30.360buyimg.com/jdmonitor/jfs/t1/182782/12/36893/2765/64e5d52eFa1521fe3/5c5463ad761a8b7c.png",
                            "commonExcellentComment": "https://img12.360buyimg.com/imagetools/jfs/t1/230854/32/13832/17553/65dc2da8F281458bd/7011f6409622c0a5.png",
                            "blackCommonExcellentComment": "https://img11.360buyimg.com/imagetools/jfs/t1/102569/34/47413/19409/65e53f7aF297dde93/fe99faa0a797a0a4.png",
                            "productSpecifications": "已购 碱性7号 【超划算】40节-彩虹装",
                            "newCommentDate": "2025-12-31",
                            "repurchaseInfo": "该店铺购买≥10次",
                            "plusUrl": "https://img14.360buyimg.com/img/jfs/t1/277700/12/22783/7087/6800a0d5Fca71724a/d802d331c10cf16c.png",
                            "highlightList": [

                            ],
                            "carOwner": "",
                            "showQuestion": "0"
                        }
                    },
                    {
                        "commentInfo": {
                            "userNickName": "喜欢懒欢喜ovo",
                            "userImgURL": "https://storage.360buyimg.com/i.imageUpload/6a645f3730353835343431663739353031363034343832323637393535_sma.jpg",
                            "commentId": "103361590158435505",
                            "commentShareUrl": "100004288561&commentId=T6NdOsF2jZUtdR-OX6WdxX-E",
                            "wareAttribute": [
                                {
                                    "颜色": "碱性5号"
                                },
                                {
                                    "型号": "【超划算】40节-彩虹装"
                                }
                            ],
                            "afterComment": [

                            ],
                            "noCommentMessage": "用户未及时作出评价哦~",
                            "haveLiked": "0",
                            "imageStatusText": "",
                            "iconList": [
                                {
                                    "iconId": "member",
                                    "iconType": "0",
                                    "iconTagId": "tab_3841",
                                    "iconJumpUrl": "",
                                    "iconTagType": "",
                                    "iconHigh": "14"
                                },
                                {
                                    "iconId": "shopBought",
                                    "iconType": "3",
                                    "iconTagId": "tab_3846",
                                    "iconJumpUrl": "",
                                    "iconTagType": "",
                                    "iconHigh": "14"
                                }
                            ],
                            "tagCommentContent": "最近入手了京东京造的五号电池,体验超棒👍!\n外观上,包装简约大方,电池本身做工精细,质感十足。拿在手里沉甸甸的,就感觉电量很足。\n使用起来,续航能力真的惊艳到我了。我把它放进常用的无线鼠标里,之前用的其他电池,差不多两周就得换一次,而这款京东京造的电池,已经用了一个多月,鼠标依旧灵敏,电量显示还是满格,这持久度杠杠的。\n而且,它的适配性也很好,家里的玩具、遥控器等各种需要五号电池的设备,装上它都能正常使用,兼容性超强。\n价格方面,性价比超高。这么好的品质,价格却很亲民,相比其他品牌,真的是物美价廉。\n总的来说,京东京造的五号电池是一款值得无限回购的好物,有电池需求的朋友可以放心冲!",
                            "carTagInfo": "",
                            "ownerStatus": "0",
                            "productId": "100004288561",
                            "buyCount": 16,
                            "buyCountText": "该店铺购买≥10次",
                            "commentDate": "2025-12-24 01:08:09",
                            "commentScore": "5",
                            "commentScoreText": "超赞",
                            "praiseCnt": "0",
                            "praiseText": "有用",
                            "beforePraiseIcon": "https://img11.360buyimg.com/imagetools/jfs/t1/230919/21/2961/1669/6551f925Fd0b7b52d/d58d93a9f2a6a486.png",
                            "afterPraiseIcon": "https://img10.360buyimg.com/imagetools/jfs/t1/225107/2/3274/4306/6551f925Fe5873551/6236a511983b6cd0.png",
                            "replyText": "回复",
                            "replyIcon": "https://img10.360buyimg.com/imagetools/jfs/t1/225614/12/1508/705/6551f925Fc2990067/ef456e65cae02b91.png",
                            "replyCnt": "0",
                            "commentData": "最近入手了京东京造的五号电池,体验超棒👍!\n外观上,包装简约大方,电池本身做工精细,质感十足。拿在手里沉甸甸的,就感觉电量很足。\n使用起来,续航能力真的惊艳到我了。我把它放进常用的无线鼠标里,之前用的其他电池,差不多两周就得换一次,而这款京东京造的电池,已经用了一个多月,鼠标依旧灵敏,电量显示还是满格,这持久度杠杠的。\n而且,它的适配性也很好,家里的玩具、遥控器等各种需要五号电池的设备,装上它都能正常使用,兼容性超强。\n价格方面,性价比超高。这么好的品质,价格却很亲民,相比其他品牌,真的是物美价廉。\n总的来说,京东京造的五号电池是一款值得无限回购的好物,有电池需求的朋友可以放心冲!",
                            "pictureInfoList": [
                                {
                                    "picURL": "https://img30.360buyimg.com/shaidan/s300x300_jfs/t1/383923/6/5481/2294249/694acc79Fb1209a40/00a9c00000f8b675.jpg.dpg",
                                    "largePicURL": "https://img30.360buyimg.com/shaidan/s1080x1080_jfs/t1/383923/6/5481/2294249/694acc79Fb1209a40/00a9c00000f8b675.jpg.dpg",
                                    "mediaType": "1",
                                    "liveShooting": "0"
                                },
                                {
                                    "picURL": "https://img30.360buyimg.com/shaidan/s300x300_jfs/t1/374759/18/22535/2776884/694acc79F33e1d196/00a9c000008fe682.jpg.dpg",
                                    "largePicURL": "https://img30.360buyimg.com/shaidan/s1080x1080_jfs/t1/374759/18/22535/2776884/694acc79F33e1d196/00a9c000008fe682.jpg.dpg",
                                    "mediaType": "1",
                                    "liveShooting": "0"
                                }
                            ],
                            "guid": "T6NdOsF2jZUtdR-OX6WdxX-E",
                            "maidianInfo": "89096;39000;39670_100067970489_全部_1_6_T6NdOsF2jZUtdR-OX6WdxX-E_-100__-100",
                            "testId": "cmt",
                            "imageStatus": "1",
                            "excellentCommentIcon": "",
                            "officerLevel": "3",
                            "productSpecifications": "已购 碱性5号 【超划算】40节-彩虹装",
                            "newCommentDate": "2025-12-24",
                            "repurchaseInfo": "该店铺购买≥10次",
                            "plusUrl": "https://img14.360buyimg.com/img/jfs/t1/277700/12/22783/7087/6800a0d5Fca71724a/d802d331c10cf16c.png",
                            "highlightList": [

                            ],
                            "carOwner": "",
                            "showQuestion": "0"
                        }
                    },
                    {
                        "commentInfo": {
                            "userNickName": "世***洋",
                            "userImgURL": "https://storage.360buyimg.com/i.imageUpload/31383533363933392d363235343435353531363935343734373330303636_sma.jpg",
                            "commentId": "103442710160467387",
                            "commentShareUrl": "100007385962&commentId=T6NdPcN1j50tdRyGX6Cfw3eG",
                            "wareAttribute": [
                                {
                                    "颜色": "碱性7号"
                                },
                                {
                                    "型号": "【超划算】40节-彩虹装"
                                }
                            ],
                            "afterComment": [

                            ],
                            "noCommentMessage": "用户未及时作出评价哦~",
                            "haveLiked": "0",
                            "imageStatusText": "",
                            "iconList": [
                                {
                                    "iconId": "member",
                                    "iconType": "0",
                                    "iconTagId": "tab_3841",
                                    "iconJumpUrl": "",
                                    "iconTagType": "",
                                    "iconHigh": "14"
                                }
                            ],
                            "tagCommentContent": "京东京造7号彩虹电池40节装,颜值与实力并存!彩虹色设计美观又便于区分,无铅无汞环保配方安全放心。容量升级至1006mAh,续航强劲,适配血压计、指纹锁等多种设备。电压稳定,防漏液设计保护电器,保质期长达10年。性价比超高,40节大容量满足家庭长期需求,日常囤货必备!",
                            "carTagInfo": "",
                            "ownerStatus": "0",
                            "productId": "100007385962",
                            "buyCount": 12,
                            "buyCountText": "该店铺购买≥10次",
                            "commentDate": "2025-12-28 15:03:13",
                            "commentScore": "5",
                            "commentScoreText": "超赞",
                            "praiseCnt": "0",
                            "praiseText": "有用",
                            "beforePraiseIcon": "https://img11.360buyimg.com/imagetools/jfs/t1/230919/21/2961/1669/6551f925Fd0b7b52d/d58d93a9f2a6a486.png",
                            "afterPraiseIcon": "https://img10.360buyimg.com/imagetools/jfs/t1/225107/2/3274/4306/6551f925Fe5873551/6236a511983b6cd0.png",
                            "replyText": "回复",
                            "replyIcon": "https://img10.360buyimg.com/imagetools/jfs/t1/225614/12/1508/705/6551f925Fc2990067/ef456e65cae02b91.png",
                            "replyCnt": "0",
                            "commentData": "京东京造7号彩虹电池40节装,颜值与实力并存!彩虹色设计美观又便于区分,无铅无汞环保配方安全放心。容量升级至1006mAh,续航强劲,适配血压计、指纹锁等多种设备。电压稳定,防漏液设计保护电器,保质期长达10年。性价比超高,40节大容量满足家庭长期需求,日常囤货必备!",
                            "pictureInfoList": [
                                {
                                    "picURL": "https://img30.360buyimg.com/shaidan/s300x300_jfs/t1/382147/30/8279/88990/6950d630Faa7bdd54/00a95a0a00c57f1c.jpg.dpg",
                                    "largePicURL": "https://img30.360buyimg.com/shaidan/s1080x1080_jfs/t1/382147/30/8279/88990/6950d630Faa7bdd54/00a95a0a00c57f1c.jpg.dpg",
                                    "mediaType": "1",
                                    "showOrderMediaId": "409554050",
                                    "liveShooting": "1"
                                },
                                {
                                    "picURL": "https://img30.360buyimg.com/shaidan/s300x300_jfs/t1/378535/40/17946/80309/6950d631F6c6a900b/00a95a0a0079cff6.jpg.dpg",
                                    "largePicURL": "https://img30.360buyimg.com/shaidan/s1080x1080_jfs/t1/378535/40/17946/80309/6950d631F6c6a900b/00a95a0a0079cff6.jpg.dpg",
                                    "mediaType": "1",
                                    "showOrderMediaId": "1418168812",
                                    "liveShooting": "1"
                                }
                            ],
                            "guid": "T6NdPcN1j50tdRyGX6Cfw3eG",
                            "maidianInfo": "89096;39000;39670_100067970489_全部_1_7_T6NdPcN1j50tdRyGX6Cfw3eG_-100__-100",
                            "testId": "cmt",
                            "imageStatus": "1",
                            "excellentCommentIcon": "",
                            "officerLevel": "3",
                            "usedIconUrl": "https://img30.360buyimg.com/jdmonitor/jfs/t1/182782/12/36893/2765/64e5d52eFa1521fe3/5c5463ad761a8b7c.png",
                            "commonExcellentComment": "https://img12.360buyimg.com/imagetools/jfs/t1/230854/32/13832/17553/65dc2da8F281458bd/7011f6409622c0a5.png",
                            "blackCommonExcellentComment": "https://img11.360buyimg.com/imagetools/jfs/t1/102569/34/47413/19409/65e53f7aF297dde93/fe99faa0a797a0a4.png",
                            "productSpecifications": "已购 碱性7号 【超划算】40节-彩虹装",
                            "newCommentDate": "2025-12-28",
                            "repurchaseInfo": "该店铺购买≥10次",
                            "plusUrl": "https://img14.360buyimg.com/img/jfs/t1/277700/12/22783/7087/6800a0d5Fca71724a/d802d331c10cf16c.png",
                            "highlightList": [

                            ],
                            "carOwner": "",
                            "showQuestion": "0"
                        }
                    },
                    {
                        "commentInfo": {
                            "userNickName": "o***a",
                            "userImgURL": "https://storage.360buyimg.com/i.imageUpload/733136353137333134333231363530383131333738373536383133343537_sma.jpg",
                            "commentId": "103593040155249730",
                            "commentShareUrl": "100011643990&commentId=T6NdPM50iJgtdR-DWaKRx3yB",
                            "wareAttribute": [
                                {
                                    "颜色": "碱性5/7号混装"
                                },
                                {
                                    "型号": "【居家常备】24节-彩虹装"
                                }
                            ],
                            "afterComment": [

                            ],
                            "noCommentMessage": "用户未及时作出评价哦~",
                            "haveLiked": "0",
                            "imageStatusText": "",
                            "iconList": [
                                {
                                    "iconId": "member",
                                    "iconType": "0",
                                    "iconTagId": "tab_3841",
                                    "iconJumpUrl": "",
                                    "iconTagType": "",
                                    "iconHigh": "14"
                                }
                            ],
                            "tagCommentContent": "这套五号、七号电池套装真的很实用,日常遥控器、鼠标、儿童玩具都能用上。电量很足,用了好几天都没出现断电的情况,而且包装设计也很贴心,两种型号分开收纳,拿取方便又不容易搞混,性价比超高,家里备上一套准没错。",
                            "carTagInfo": "",
                            "ownerStatus": "0",
                            "productId": "100011643990",
                            "buyCount": 12,
                            "buyCountText": "该店铺购买≥10次",
                            "commentDate": "2025-12-28 20:41:29",
                            "commentScore": "5",
                            "commentScoreText": "超赞",
                            "praiseCnt": "0",
                            "praiseText": "有用",
                            "beforePraiseIcon": "https://img11.360buyimg.com/imagetools/jfs/t1/230919/21/2961/1669/6551f925Fd0b7b52d/d58d93a9f2a6a486.png",
                            "afterPraiseIcon": "https://img10.360buyimg.com/imagetools/jfs/t1/225107/2/3274/4306/6551f925Fe5873551/6236a511983b6cd0.png",
                            "replyText": "回复",
                            "replyIcon": "https://img10.360buyimg.com/imagetools/jfs/t1/225614/12/1508/705/6551f925Fc2990067/ef456e65cae02b91.png",
                            "replyCnt": "0",
                            "commentData": "这套五号、七号电池套装真的很实用,日常遥控器、鼠标、儿童玩具都能用上。电量很足,用了好几天都没出现断电的情况,而且包装设计也很贴心,两种型号分开收纳,拿取方便又不容易搞混,性价比超高,家里备上一套准没错。",
                            "pictureInfoList": [
                                {
                                    "picURL": "https://img30.360buyimg.com/shaidan/s300x300_jfs/t1/380607/30/17114/2161450/69512578F6276c96d/00a9000c00da50ef.jpg.dpg",
                                    "largePicURL": "https://img30.360buyimg.com/shaidan/s1080x1080_jfs/t1/380607/30/17114/2161450/69512578F6276c96d/00a9000c00da50ef.jpg.dpg",
                                    "mediaType": "1",
                                    "showOrderMediaId": "444189217",
                                    "liveShooting": "0"
                                },
                                {
                                    "picURL": "https://img30.360buyimg.com/shaidan/s300x300_jfs/t1/380783/2/18067/2696263/69512578F799136b2/00a9fc0bd03e7772.jpg.dpg",
                                    "largePicURL": "https://img30.360buyimg.com/shaidan/s1080x1080_jfs/t1/380783/2/18067/2696263/69512578F799136b2/00a9fc0bd03e7772.jpg.dpg",
                                    "mediaType": "1",
                                    "liveShooting": "0"
                                }
                            ],
                            "guid": "T6NdPM50iJgtdR-DWaKRx3yB",
                            "maidianInfo": "89096;39000;39670_100067970489_全部_1_8_T6NdPM50iJgtdR-DWaKRx3yB_-100__-100",
                            "testId": "cmt",
                            "imageStatus": "1",
                            "excellentCommentIcon": "",
                            "officerLevel": "1",
                            "usedIconUrl": "https://img30.360buyimg.com/jdmonitor/jfs/t1/182782/12/36893/2765/64e5d52eFa1521fe3/5c5463ad761a8b7c.png",
                            "commonExcellentComment": "https://img12.360buyimg.com/imagetools/jfs/t1/230854/32/13832/17553/65dc2da8F281458bd/7011f6409622c0a5.png",
                            "blackCommonExcellentComment": "https://img11.360buyimg.com/imagetools/jfs/t1/102569/34/47413/19409/65e53f7aF297dde93/fe99faa0a797a0a4.png",
                            "productSpecifications": "已购 碱性5/7号混装 【居家常备】24节-彩虹装",
                            "newCommentDate": "2025-12-28",
                            "repurchaseInfo": "该店铺购买≥10次",
                            "plusUrl": "https://img14.360buyimg.com/img/jfs/t1/277700/12/22783/7087/6800a0d5Fca71724a/d802d331c10cf16c.png",
                            "highlightList": [

                            ],
                            "carOwner": "",
                            "showQuestion": "0"
                        }
                    },
                    {
                        "commentInfo": {
                            "userNickName": "F***n",
                            "userImgURL": "https://storage.360buyimg.com/default.image/6a645f6465665f696d675f393836313831373632333134353936363836_sma.jpg",
                            "commentId": "103592530163818846",
                            "commentShareUrl": "100007385962&commentId=T6NdPM51jZ8tdRyFU6eQyHuH",
                            "wareAttribute": [
                                {
                                    "颜色": "碱性7号"
                                },
                                {
                                    "型号": "【超划算】40节-彩虹装"
                                }
                            ],
                            "afterComment": [

                            ],
                            "noCommentMessage": "用户未及时作出评价哦~",
                            "haveLiked": "0",
                            "imageStatusText": "",
                            "iconList": [
                                {
                                    "iconId": "member",
                                    "iconType": "0",
                                    "iconTagId": "tab_3841",
                                    "iconJumpUrl": "",
                                    "iconTagType": "",
                                    "iconHigh": "14"
                                }
                            ],
                            "tagCommentContent": "家里电子设备多,7号电池简直是刚需耗材,这款真的选对了!碱性材质电量超扎实,装在孩子的电动玩具、无线鼠标和耳温枪里都超适配,供电稳定不卡顿。最惊喜的是续航力,比之前买的普通电池耐用太多,不用频繁更换,而且密封工艺到位,完全不用担心漏液腐蚀设备。无汞环保设计很放心,大包装性价比超高,家里囤着备用太方便,已经推荐给身边朋友了!",
                            "carTagInfo": "",
                            "ownerStatus": "0",
                            "productId": "100007385962",
                            "buyCount": 6,
                            "buyCountText": "该店铺购买≥2次",
                            "commentDate": "2025-12-29 00:53:33",
                            "commentScore": "5",
                            "commentScoreText": "超赞",
                            "praiseCnt": "0",
                            "praiseText": "有用",
                            "beforePraiseIcon": "https://img11.360buyimg.com/imagetools/jfs/t1/230919/21/2961/1669/6551f925Fd0b7b52d/d58d93a9f2a6a486.png",
                            "afterPraiseIcon": "https://img10.360buyimg.com/imagetools/jfs/t1/225107/2/3274/4306/6551f925Fe5873551/6236a511983b6cd0.png",
                            "replyText": "回复",
                            "replyIcon": "https://img10.360buyimg.com/imagetools/jfs/t1/225614/12/1508/705/6551f925Fc2990067/ef456e65cae02b91.png",
                            "replyCnt": "0",
                            "commentData": "家里电子设备多,7号电池简直是刚需耗材,这款真的选对了!碱性材质电量超扎实,装在孩子的电动玩具、无线鼠标和耳温枪里都超适配,供电稳定不卡顿。最惊喜的是续航力,比之前买的普通电池耐用太多,不用频繁更换,而且密封工艺到位,完全不用担心漏液腐蚀设备。无汞环保设计很放心,大包装性价比超高,家里囤着备用太方便,已经推荐给身边朋友了!",
                            "pictureInfoList": [
                                {
                                    "picURL": "https://img30.360buyimg.com/shaidan/s300x300_jfs/t1/383361/16/10160/63043/6951608cF8f7a922f/00a943878018f4d5.jpg.dpg",
                                    "largePicURL": "https://img30.360buyimg.com/shaidan/s1080x1080_jfs/t1/383361/16/10160/63043/6951608cF8f7a922f/00a943878018f4d5.jpg.dpg",
                                    "mediaType": "1",
                                    "showOrderMediaId": "374586519",
                                    "liveShooting": "1"
                                },
                                {
                                    "picURL": "https://img30.360buyimg.com/shaidan/s300x300_jfs/t1/378989/37/15245/95917/6951608cFf66424ab/00a9438780713e2b.jpg.dpg",
                                    "largePicURL": "https://img30.360buyimg.com/shaidan/s1080x1080_jfs/t1/378989/37/15245/95917/6951608cFf66424ab/00a9438780713e2b.jpg.dpg",
                                    "mediaType": "1",
                                    "liveShooting": "1"
                                }
                            ],
                            "guid": "T6NdPM51jZ8tdRyFU6eQyHuH",
                            "maidianInfo": "89096;39000;39670_100067970489_全部_1_9_T6NdPM51jZ8tdRyFU6eQyHuH_-100__-100",
                            "testId": "cmt",
                            "imageStatus": "1",
                            "excellentCommentIcon": "",
                            "officerLevel": "2",
                            "usedIconUrl": "https://img30.360buyimg.com/jdmonitor/jfs/t1/182782/12/36893/2765/64e5d52eFa1521fe3/5c5463ad761a8b7c.png",
                            "commonExcellentComment": "https://img12.360buyimg.com/imagetools/jfs/t1/230854/32/13832/17553/65dc2da8F281458bd/7011f6409622c0a5.png",
                            "blackCommonExcellentComment": "https://img11.360buyimg.com/imagetools/jfs/t1/102569/34/47413/19409/65e53f7aF297dde93/fe99faa0a797a0a4.png",
                            "productSpecifications": "已购 碱性7号 【超划算】40节-彩虹装",
                            "newCommentDate": "2025-12-29",
                            "repurchaseInfo": "该店铺购买≥2次",
                            "plusUrl": "https://img14.360buyimg.com/img/jfs/t1/277700/12/22783/7087/6800a0d5Fca71724a/d802d331c10cf16c.png",
                            "highlightList": [

                            ],
                            "carOwner": "",
                            "showQuestion": "0"
                        }
                    },
                    {
                        "commentInfo": {
                            "userNickName": "無影社攝影",
                            "userImgURL": "https://storage.360buyimg.com/i.imageUpload/cee2b3ac343634333631373335383330323835353234_sma.jpg",
                            "commentId": "103481440162365058",
                            "commentShareUrl": "100004288565&commentId=T6NdPc92jJgtdRyEWKCdwHqJ",
                            "wareAttribute": [
                                {
                                    "颜色": "碱性7号"
                                },
                                {
                                    "型号": "【居家常备】24节-彩虹装"
                                }
                            ],
                            "afterComment": [

                            ],
                            "noCommentMessage": "用户未及时作出评价哦~",
                            "haveLiked": "0",
                            "imageStatusText": "",
                            "iconList": [
                                {
                                    "iconId": "member",
                                    "iconType": "0",
                                    "iconTagId": "tab_3842",
                                    "iconJumpUrl": "",
                                    "iconTagType": "",
                                    "iconHigh": "14"
                                },
                                {
                                    "iconId": "shopBought",
                                    "iconType": "3",
                                    "iconTagId": "tab_3846",
                                    "iconJumpUrl": "",
                                    "iconTagType": "",
                                    "iconHigh": "14"
                                }
                            ],
                            "tagCommentContent": "「一钻石会员 「本店购买&gt;2次\n1 1-28超供 會竟六會个 已贻 破性5只 【千万用户之选】 |0节-..LUS包装外观 : 外观简洁太气 ,风格况稳\n物流时效 : 京东送货很快 , 第二天就到了\n电池外观也很好看 ,可惜我买的是单色装 , 都一种颜\n色分价格很安東 。10节不到十块钱 。用在闹钟 鼠标\n啥的性价比太高了 , 很满意 收赶",
                            "carTagInfo": "",
                            "ownerStatus": "0",
                            "productId": "100004288565",
                            "buyCount": 18,
                            "buyCountText": "该店铺购买≥10次",
                            "commentDate": "2025-12-25 23:17:26",
                            "commentScore": "5",
                            "commentScoreText": "超赞",
                            "praiseCnt": "0",
                            "praiseText": "有用",
                            "beforePraiseIcon": "https://img11.360buyimg.com/imagetools/jfs/t1/230919/21/2961/1669/6551f925Fd0b7b52d/d58d93a9f2a6a486.png",
                            "afterPraiseIcon": "https://img10.360buyimg.com/imagetools/jfs/t1/225107/2/3274/4306/6551f925Fe5873551/6236a511983b6cd0.png",
                            "replyText": "回复",
                            "replyIcon": "https://img10.360buyimg.com/imagetools/jfs/t1/225614/12/1508/705/6551f925Fc2990067/ef456e65cae02b91.png",
                            "replyCnt": "0",
                            "commentData": "「一钻石会员 「本店购买&gt;2次\n1 1-28超供 會竟六會个 已贻 破性5只 【千万用户之选】 |0节-..LUS包装外观 : 外观简洁太气 ,风格况稳\n物流时效 : 京东送货很快 , 第二天就到了\n电池外观也很好看 ,可惜我买的是单色装 , 都一种颜\n色分价格很安東 。10节不到十块钱 。用在闹钟 鼠标\n啥的性价比太高了 , 很满意 收赶",
                            "pictureInfoList": [
                                {
                                    "picURL": "https://img30.360buyimg.com/shaidan/s300x300_jfs/t1/382324/14/7515/133420/694d5584Fb977e141/00a95a03b53e394e.jpg.dpg",
                                    "largePicURL": "https://img30.360buyimg.com/shaidan/s1080x1080_jfs/t1/382324/14/7515/133420/694d5584Fb977e141/00a95a03b53e394e.jpg.dpg",
                                    "mediaType": "1",
                                    "showOrderMediaId": "2023804033",
                                    "liveShooting": "0"
                                },
                                {
                                    "picURL": "https://img30.360buyimg.com/shaidan/s300x300_jfs/t1/376467/30/20775/177904/694d5585F2ba21c84/00a95a04e5c754b5.jpg.dpg",
                                    "largePicURL": "https://img30.360buyimg.com/shaidan/s1080x1080_jfs/t1/376467/30/20775/177904/694d5585F2ba21c84/00a95a04e5c754b5.jpg.dpg",
                                    "mediaType": "1",
                                    "showOrderMediaId": "1229406291",
                                    "liveShooting": "0"
                                },
                                {
                                    "picURL": "https://img30.360buyimg.com/shaidan/s300x300_jfs/t1/374730/2/22076/147902/694d5584F5e121dd5/00a95a07ca6323e7.jpg.dpg",
                                    "largePicURL": "https://img30.360buyimg.com/shaidan/s1080x1080_jfs/t1/374730/2/22076/147902/694d5584F5e121dd5/00a95a07ca6323e7.jpg.dpg",
                                    "mediaType": "1",
                                    "showOrderMediaId": "481761884",
                                    "liveShooting": "0"
                                }
                            ],
                            "guid": "T6NdPc92jJgtdRyEWKCdwHqJ",
                            "maidianInfo": "89096;39000;39670_100067970489_全部_1_10_T6NdPc92jJgtdRyEWKCdwHqJ_-100__-100",
                            "testId": "cmt",
                            "imageStatus": "1",
                            "excellentCommentIcon": "",
                            "officerLevel": "4",
                            "productSpecifications": "已购 碱性7号 【居家常备】24节-彩虹装",
                            "newCommentDate": "2025-12-25",
                            "repurchaseInfo": "该店铺购买≥10次",
                            "plusUrl": "https://img14.360buyimg.com/img/jfs/t1/277700/12/22783/7087/6800a0d5Fca71724a/d802d331c10cf16c.png",
                            "highlightList": [

                            ],
                            "carOwner": "",
                            "showQuestion": "0"
                        }
                    }
                ]
            },
            {
                "floorId": "flo_15000",
                "type": "eCustom",
                "mId": "commentlist-mixlabel",
                "tmpId": "Mixlabel",
                "cf": {
                    "st": {
                        "bgc": "#fff"
                    }
                },
                "data": {
                    "mixTagList": [
                        {
                            "name": "全部",
                            "identification": "ALL",
                            "exposureEventId": "",
                            "count": "5000000",
                            "type": "0",
                            "sort": "1",
                            "isShowZeroTag": false,
                            "isDefaultTag": true,
                            "countStr": "99%好评",
                            "countText": "99%好评",
                            "supportDefaultSort": true,
                            "supportNewSort": true,
                            "showTopBar": true,
                            "showFoldComment": true,
                            "plusSelect": "1",
                            "tagDesc": {
                                "dialogDesc": "京东致力于为您提供合法、公正、客观、真实的评价晒单,将采取技术手段对恶意、虚假等不当评价进行处理,以便为您消费决策提供有效参考。",
                                "icon": "",
                                "dialogTitle": "京东评价原则",
                                "jumpUrl": "",
                                "dialogBtn": "我知道了",
                                "clerk_type": "1",
                                "desc": "京东鼓励真实、有用的评价"
                            },
                            "canBeFiltered": false
                        },
                        {
                            "name": "图/视频",
                            "identification": "SHAITU",
                            "exposureEventId": "",
                            "count": "50000",
                            "type": "102",
                            "sort": "3",
                            "isShowZeroTag": false,
                            "isDefaultTag": false,
                            "countStr": "5万+",
                            "countText": "5万+",
                            "supportDefaultSort": true,
                            "supportNewSort": true,
                            "showTopBar": true,
                            "showFoldComment": false,
                            "tagDesc": {
                                "dialogDesc": "京东致力于为您提供合法、公正、客观、真实的评价晒单,将采取技术手段对恶意、虚假等不当评价进行处理,以便为您消费决策提供有效参考。",
                                "icon": "",
                                "dialogTitle": "京东评价原则",
                                "jumpUrl": "",
                                "dialogBtn": "我知道了",
                                "clerk_type": "1",
                                "desc": "京东鼓励真实、有用的评价"
                            },
                            "canBeFiltered": false
                        },
                        {
                            "name": "图/视频",
                            "identification": "YOUTU",
                            "exposureEventId": "",
                            "count": "50000",
                            "type": "4",
                            "sort": "4",
                            "isShowZeroTag": false,
                            "isDefaultTag": true,
                            "countStr": "5万+",
                            "countText": "5万+",
                            "supportDefaultSort": true,
                            "supportNewSort": true,
                            "showTopBar": true,
                            "showFoldComment": true,
                            "tagDesc": {
                                "dialogDesc": "京东致力于为您提供合法、公正、客观、真实的评价晒单,将采取技术手段对恶意、虚假等不当评价进行处理,以便为您消费决策提供有效参考。",
                                "icon": "",
                                "dialogTitle": "京东评价原则",
                                "jumpUrl": "",
                                "dialogBtn": "我知道了",
                                "clerk_type": "1",
                                "desc": "京东鼓励真实、有用的评价"
                            },
                            "canBeFiltered": false
                        },
                        {
                            "name": "追评",
                            "identification": "ZHUIPING",
                            "exposureEventId": "CommentsShare_CommentListLabelExpo",
                            "count": "2000",
                            "type": "5",
                            "sort": "5",
                            "isShowZeroTag": false,
                            "isDefaultTag": true,
                            "countStr": "2000+",
                            "countText": "2000+",
                            "supportDefaultSort": true,
                            "supportNewSort": true,
                            "showTopBar": true,
                            "showFoldComment": true,
                            "tagDesc": {
                                "dialogDesc": "京东致力于为您提供合法、公正、客观、真实的评价晒单,将采取技术手段对恶意、虚假等不当评价进行处理,以便为您消费决策提供有效参考。",
                                "icon": "",
                                "dialogTitle": "京东评价原则",
                                "jumpUrl": "",
                                "dialogBtn": "我知道了",
                                "clerk_type": "1",
                                "desc": "京东鼓励真实、有用的评价"
                            },
                            "canBeFiltered": false
                        },
                        {
                            "name": "回头客",
                            "identification": "REBUY",
                            "exposureEventId": "",
                            "count": "200",
                            "type": "18",
                            "sort": "2",
                            "isShowZeroTag": false,
                            "isDefaultTag": true,
                            "countStr": "1900+",
                            "countText": "1900+",
                            "supportDefaultSort": true,
                            "supportNewSort": false,
                            "showTopBar": true,
                            "showFoldComment": false,
                            "tagDesc": {
                                "dialogDesc": "京东致力于为您提供合法、公正、客观、真实的评价晒单,将采取技术手段对恶意、虚假等不当评价进行处理,以便为您消费决策提供有效参考。",
                                "icon": "",
                                "dialogTitle": "京东评价原则",
                                "jumpUrl": "",
                                "dialogBtn": "我知道了",
                                "clerk_type": "1",
                                "desc": "京东鼓励真实、有用的评价"
                            },
                            "canBeFiltered": false
                        },
                        {
                            "id": "c455d35014634156f0aca80ba3024d35##V10003T38",
                            "tagId": "c455d35014634156f0aca80ba3024d35##V10003T38",
                            "name": "电池超耐用",
                            "count": "6057",
                            "type": "0",
                            "tagType": "4",
                            "countText": "6057",
                            "showTopBar": true,
                            "tagDesc": {
                                "dialogDesc": "京东致力于为您提供合法、公正、客观、真实的评价晒单,将采取技术手段对恶意、虚假等不当评价进行处理,以便为您消费决策提供有效参考。",
                                "icon": "",
                                "dialogTitle": "京东评价原则",
                                "jumpUrl": "",
                                "dialogBtn": "我知道了",
                                "clerk_type": "1",
                                "desc": "京东鼓励真实、有用的评价"
                            },
                            "canBeFiltered": true,
                            "stand": "1",
                            "ckeKeyWordBury": ""
                        },
                        {
                            "id": "f984c621751190d34423a8c4251cbd6e##V10003T38",
                            "tagId": "f984c621751190d34423a8c4251cbd6e##V10003T38",
                            "name": "电池电量足",
                            "count": "4120",
                            "type": "0",
                            "tagType": "4",
                            "countText": "4120",
                            "showTopBar": true,
                            "tagDesc": {
                                "dialogDesc": "京东致力于为您提供合法、公正、客观、真实的评价晒单,将采取技术手段对恶意、虚假等不当评价进行处理,以便为您消费决策提供有效参考。",
                                "icon": "",
                                "dialogTitle": "京东评价原则",
                                "jumpUrl": "",
                                "dialogBtn": "我知道了",
                                "clerk_type": "1",
                                "desc": "京东鼓励真实、有用的评价"
                            },
                            "canBeFiltered": true,
                            "stand": "1",
                            "ckeKeyWordBury": ""
                        },
                        {
                            "id": "22f896dd0630ab079da6bb8464b1e525##V10003T38",
                            "tagId": "22f896dd0630ab079da6bb8464b1e525##V10003T38",
                            "name": "用起来超方便",
                            "count": "3779",
                            "type": "0",
                            "tagType": "4",
                            "countText": "3779",
                            "showTopBar": true,
                            "tagDesc": {
                                "dialogDesc": "京东致力于为您提供合法、公正、客观、真实的评价晒单,将采取技术手段对恶意、虚假等不当评价进行处理,以便为您消费决策提供有效参考。",
                                "icon": "",
                                "dialogTitle": "京东评价原则",
                                "jumpUrl": "",
                                "dialogBtn": "我知道了",
                                "clerk_type": "1",
                                "desc": "京东鼓励真实、有用的评价"
                            },
                            "canBeFiltered": true,
                            "stand": "1",
                            "ckeKeyWordBury": ""
                        },
                        {
                            "id": "6dee6002f7c7d74f452004ca57679845##V10003T38",
                            "tagId": "6dee6002f7c7d74f452004ca57679845##V10003T38",
                            "name": "充电超快",
                            "count": "496",
                            "type": "0",
                            "tagType": "4",
                            "countText": "496",
                            "showTopBar": true,
                            "tagDesc": {
                                "dialogDesc": "京东致力于为您提供合法、公正、客观、真实的评价晒单,将采取技术手段对恶意、虚假等不当评价进行处理,以便为您消费决策提供有效参考。",
                                "icon": "",
                                "dialogTitle": "京东评价原则",
                                "jumpUrl": "",
                                "dialogBtn": "我知道了",
                                "clerk_type": "1",
                                "desc": "京东鼓励真实、有用的评价"
                            },
                            "canBeFiltered": true,
                            "stand": "1",
                            "ckeKeyWordBury": ""
                        },
                        {
                            "id": "ffd1ecdb40ed463383d1f34dadf87be1##V10003T38",
                            "tagId": "ffd1ecdb40ed463383d1f34dadf87be1##V10003T38",
                            "name": "尺寸合适",
                            "count": "274",
                            "type": "0",
                            "tagType": "4",
                            "countText": "274",
                            "showTopBar": true,
                            "tagDesc": {
                                "dialogDesc": "京东致力于为您提供合法、公正、客观、真实的评价晒单,将采取技术手段对恶意、虚假等不当评价进行处理,以便为您消费决策提供有效参考。",
                                "icon": "",
                                "dialogTitle": "京东评价原则",
                                "jumpUrl": "",
                                "dialogBtn": "我知道了",
                                "clerk_type": "1",
                                "desc": "京东鼓励真实、有用的评价"
                            },
                            "canBeFiltered": true,
                            "stand": "1",
                            "ckeKeyWordBury": ""
                        },
                        {
                            "id": "b225e15eac451bdc4f19835a407239ce##V10003T38",
                            "tagId": "b225e15eac451bdc4f19835a407239ce##V10003T38",
                            "name": "握感舒适",
                            "count": "172",
                            "type": "0",
                            "tagType": "4",
                            "countText": "172",
                            "showTopBar": true,
                            "tagDesc": {
                                "dialogDesc": "京东致力于为您提供合法、公正、客观、真实的评价晒单,将采取技术手段对恶意、虚假等不当评价进行处理,以便为您消费决策提供有效参考。",
                                "icon": "",
                                "dialogTitle": "京东评价原则",
                                "jumpUrl": "",
                                "dialogBtn": "我知道了",
                                "clerk_type": "1",
                                "desc": "京东鼓励真实、有用的评价"
                            },
                            "canBeFiltered": true,
                            "stand": "1",
                            "ckeKeyWordBury": ""
                        },
                        {
                            "id": "2d3ad8180edd8a8c61f46231478d4923##V10003T38",
                            "tagId": "2d3ad8180edd8a8c61f46231478d4923##V10003T38",
                            "name": "颜色超鲜艳",
                            "count": "1381",
                            "type": "0",
                            "tagType": "4",
                            "countText": "1381",
                            "showTopBar": true,
                            "tagDesc": {
                                "dialogDesc": "京东致力于为您提供合法、公正、客观、真实的评价晒单,将采取技术手段对恶意、虚假等不当评价进行处理,以便为您消费决策提供有效参考。",
                                "icon": "",
                                "dialogTitle": "京东评价原则",
                                "jumpUrl": "",
                                "dialogBtn": "我知道了",
                                "clerk_type": "1",
                                "desc": "京东鼓励真实、有用的评价"
                            },
                            "canBeFiltered": true,
                            "stand": "1",
                            "ckeKeyWordBury": ""
                        },
                        {
                            "id": "4efffe75bc1ba650929f3debba920151##V10003T38",
                            "tagId": "4efffe75bc1ba650929f3debba920151##V10003T38",
                            "name": "多场景适用",
                            "count": "953",
                            "type": "0",
                            "tagType": "4",
                            "countText": "953",
                            "showTopBar": true,
                            "tagDesc": {
                                "dialogDesc": "京东致力于为您提供合法、公正、客观、真实的评价晒单,将采取技术手段对恶意、虚假等不当评价进行处理,以便为您消费决策提供有效参考。",
                                "icon": "",
                                "dialogTitle": "京东评价原则",
                                "jumpUrl": "",
                                "dialogBtn": "我知道了",
                                "clerk_type": "1",
                                "desc": "京东鼓励真实、有用的评价"
                            },
                            "canBeFiltered": true,
                            "stand": "1",
                            "ckeKeyWordBury": ""
                        },
                        {
                            "id": "10621f988bd27be6c0ba1b71429a459e##V10003T38",
                            "tagId": "10621f988bd27be6c0ba1b71429a459e##V10003T38",
                            "name": "环保无汞",
                            "count": "618",
                            "type": "0",
                            "tagType": "4",
                            "countText": "618",
                            "showTopBar": true,
                            "tagDesc": {
                                "dialogDesc": "京东致力于为您提供合法、公正、客观、真实的评价晒单,将采取技术手段对恶意、虚假等不当评价进行处理,以便为您消费决策提供有效参考。",
                                "icon": "",
                                "dialogTitle": "京东评价原则",
                                "jumpUrl": "",
                                "dialogBtn": "我知道了",
                                "clerk_type": "1",
                                "desc": "京东鼓励真实、有用的评价"
                            },
                            "canBeFiltered": true,
                            "stand": "1",
                            "ckeKeyWordBury": ""
                        },
                        {
                            "id": "415195da2abd7e8bbfa0b45055b04e8c##V10003T38",
                            "tagId": "415195da2abd7e8bbfa0b45055b04e8c##V10003T38",
                            "name": "适合玩具使用",
                            "count": "529",
                            "type": "0",
                            "tagType": "4",
                            "countText": "529",
                            "showTopBar": true,
                            "tagDesc": {
                                "dialogDesc": "京东致力于为您提供合法、公正、客观、真实的评价晒单,将采取技术手段对恶意、虚假等不当评价进行处理,以便为您消费决策提供有效参考。",
                                "icon": "",
                                "dialogTitle": "京东评价原则",
                                "jumpUrl": "",
                                "dialogBtn": "我知道了",
                                "clerk_type": "1",
                                "desc": "京东鼓励真实、有用的评价"
                            },
                            "canBeFiltered": true,
                            "stand": "1",
                            "ckeKeyWordBury": ""
                        },
                        {
                            "id": "515c665bcd12146ecf86774b3061bb25##V10003T38",
                            "tagId": "515c665bcd12146ecf86774b3061bb25##V10003T38",
                            "name": "孩子超喜欢",
                            "count": "292",
                            "type": "0",
                            "tagType": "4",
                            "countText": "292",
                            "showTopBar": true,
                            "tagDesc": {
                                "dialogDesc": "京东致力于为您提供合法、公正、客观、真实的评价晒单,将采取技术手段对恶意、虚假等不当评价进行处理,以便为您消费决策提供有效参考。",
                                "icon": "",
                                "dialogTitle": "京东评价原则",
                                "jumpUrl": "",
                                "dialogBtn": "我知道了",
                                "clerk_type": "1",
                                "desc": "京东鼓励真实、有用的评价"
                            },
                            "canBeFiltered": true,
                            "stand": "1",
                            "ckeKeyWordBury": ""
                        },
                        {
                            "id": "89bdb978df179e6b4332065a96d196ea##V10003T38",
                            "tagId": "89bdb978df179e6b4332065a96d196ea##V10003T38",
                            "name": "适配遥控器",
                            "count": "153",
                            "type": "0",
                            "tagType": "4",
                            "countText": "153",
                            "showTopBar": true,
                            "tagDesc": {
                                "dialogDesc": "京东致力于为您提供合法、公正、客观、真实的评价晒单,将采取技术手段对恶意、虚假等不当评价进行处理,以便为您消费决策提供有效参考。",
                                "icon": "",
                                "dialogTitle": "京东评价原则",
                                "jumpUrl": "",
                                "dialogBtn": "我知道了",
                                "clerk_type": "1",
                                "desc": "京东鼓励真实、有用的评价"
                            },
                            "canBeFiltered": true,
                            "stand": "1",
                            "ckeKeyWordBury": ""
                        },
                        {
                            "name": "好评",
                            "identification": "GOOD",
                            "exposureEventId": "",
                            "count": "500000",
                            "type": "3",
                            "sort": "6",
                            "isShowZeroTag": false,
                            "isDefaultTag": true,
                            "countStr": "50万+",
                            "countText": "50万+",
                            "supportDefaultSort": true,
                            "supportNewSort": true,
                            "showTopBar": true,
                            "showFoldComment": true,
                            "tagDesc": {
                                "dialogDesc": "京东致力于为您提供合法、公正、客观、真实的评价晒单,将采取技术手段对恶意、虚假等不当评价进行处理,以便为您消费决策提供有效参考。",
                                "icon": "",
                                "dialogTitle": "京东评价原则",
                                "jumpUrl": "",
                                "dialogBtn": "我知道了",
                                "clerk_type": "1",
                                "desc": "京东鼓励真实、有用的评价"
                            },
                            "canBeFiltered": false
                        },
                        {
                            "name": "中评",
                            "identification": "NORMAL",
                            "exposureEventId": "",
                            "count": "2000",
                            "type": "2",
                            "sort": "7",
                            "isShowZeroTag": false,
                            "isDefaultTag": true,
                            "countStr": "2000+",
                            "countText": "2000+",
                            "supportDefaultSort": true,
                            "supportNewSort": true,
                            "showTopBar": true,
                            "showFoldComment": true,
                            "tagDesc": {
                                "dialogDesc": "京东致力于为您提供合法、公正、客观、真实的评价晒单,将采取技术手段对恶意、虚假等不当评价进行处理,以便为您消费决策提供有效参考。",
                                "icon": "",
                                "dialogTitle": "京东评价原则",
                                "jumpUrl": "",
                                "dialogBtn": "我知道了",
                                "clerk_type": "1",
                                "desc": "京东鼓励真实、有用的评价"
                            },
                            "canBeFiltered": false
                        },
                        {
                            "name": "差评",
                            "identification": "BAD",
                            "exposureEventId": "",
                            "count": "1000",
                            "type": "1",
                            "sort": "8",
                            "isShowZeroTag": false,
                            "isDefaultTag": true,
                            "countStr": "1000+",
                            "countText": "1000+",
                            "supportDefaultSort": true,
                            "supportNewSort": true,
                            "showTopBar": true,
                            "showFoldComment": true,
                            "tagDesc": {
                                "dialogDesc": "京东致力于为您提供合法、公正、客观、真实的评价晒单,将采取技术手段对恶意、虚假等不当评价进行处理,以便为您消费决策提供有效参考。",
                                "icon": "",
                                "dialogTitle": "京东评价原则",
                                "jumpUrl": "",
                                "dialogBtn": "我知道了",
                                "clerk_type": "1",
                                "desc": "京东鼓励真实、有用的评价"
                            },
                            "canBeFiltered": false
                        }
                    ],
                    "tagRow": 2
                }
            }
        ],
        "page_list": {
            "pageId": "tem_11095",
            "name": "评价列表楼层化",
            "data": {
                "contentFoldRowNum": "6",
                "shopReplyFoldRowNum": "2",
                "testId": "cmt",
                "isCloseCommentReply": "0",
                "likeAnimation": "0",
                "deepPageId": "c02e9354b56bb83f1d49076efb83aaee",
                "isShowQuestion": false,
                "isShowRectangleBubble": false,
                "showPicCnt": "5万+",
                "shaituCnt": "500",
                "videoAutoPlaySwitch": "1",
                "defaultGoodCountText": "NTAwMDAwMOS4queUqOaIt+m7mOiupOivhOS7t+S6huivpeWVhuWTgQ==",
                "defaultGoodLogo": "https://m.360buyimg.com/mobilecms/jfs/t10447/176/1359340654/2177/9ceed2ba/59df1d27N55b368df.png",
                "reportEntrance": "",
                "tagStyle": "B",
                "isShowRaderInfo": false,
                "maxPage": "100",
                "touchstone": {
                    "touchstone_expids": [
                        null,
                        "tsabtest|base64|ZnJvbnRwcm9jZWR1cmVfMzE3MjJ8YmFzZQ|tsabtest",
                        null,
                        "tsabtest|base64|VUdDcHJvZHVjdF85MzQ1OXxUZXN0UHJlMzg6VUdDcHJvZHVjdF82MDE4OHxUZXN0OkFQUFNYXzgzMDQzfFRlc3Q|tsabtest",
                        "tsabtest|base64|VUdDcHJvZHVjdF83MDUzNHxUZXN0cHJlNzpVR0Nwcm9kdWN0XzYwMTg4fFRlc3Q6QVBQU1hfODMwNDN8VGVzdA|tsabtest"
                    ],
                    "cid3": "39670",
                    "skuid": "100067970489"
                },
                "bottomBtnStyle": "b",
                "cardStyle": "b",
                "replyTextWordLimit": "800",
                "selectEntranceTxt": "选择款式",
                "currentSkuStatus": "2",
                "selectEntrance": "0",
                "style": "1",
                "hasNextPage": true
            }
        }
    },
    "error": "",
    "reason": "",
    "error_code": "0000",
    "cache": 0,
    "api_info": "today: max:15000 all[=++];expires:2031-01-01",
    "execution_time": "0.802",
    "server_time": "Beijing/2026-01-06 14:56:42",
    "client_ip": "127.0.0.1",
    "call_args": [

    ],
    "api_type": "jd",
    "server_memory": "3.89MB",
    "last_id": false
}
异常示例
{
		"error": "item-not-found",
		"reason": "商品没找到",
		"error_code": "2000",
		"success": 0,
		"cache": 0,
		"api_info": "today:0 max:10000",
		"execution_time": 0.081,
		"server_time": "Beijing/2023-07-20 17:30:00",
		"call_args": [],
		"api_type": "jd",
		"request_id": "15ee0ffc041242"}
相关资料
错误码解释
状态代码(error_code) 状态信息 详细描述 是否收费
0000success接口调用成功并返回相关数据
2000Search success but no result接口访问成功,但是搜索没有结果
4000Server internal error服务器内部错误
4001Network error网络错误
4002Target server error目标服务器错误
4003Param error用户输入参数错误忽略
4004Account not found用户帐号不存在忽略
4005Invalid authentication credentials授权失败忽略
4006API stopped您的当前API已停用忽略
4007Account stopped您的账户已停用忽略
4008API rate limit exceeded并发已达上限忽略
4009API maintenanceAPI维护中忽略
4010API not found with these valuesAPI不存在忽略
4012Please add api first请先添加api忽略
4013Number of calls exceeded调用次数超限忽略
4014Missing url param参数缺失忽略
4015Wrong pageToken参数pageToken有误忽略
4016Insufficient balance余额不足忽略
4017timeout error请求超时
5000unknown error未知错误
API 工具
如何获得此API
立即开通 有疑问联系客服QQ:QQ:31424016063142401606(微信同号)