凡邦京东获得JD商品详情原数据 API 返回值说明

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

onebound.jd.item_get_app

公共参数

请求地址: https://api-gw.fan-b.com/jd/item_get_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=10335871600

参数说明:item_id:商品ID

响应参数

Version: Date:

名称 类型 必须 示例值 描述
items
item[] 0 获得京东app商品详情原数据
请求示例
	
-- 请求示例 url 默认请求参数已经URL编码处理
curl -i "https://api-gw.fan-b.com/jd/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10335871600"
<?php

// 请求示例 url 默认请求参数已经URL编码处理
// 本示例代码未加密secret参数明文传输,若要加密请参考:https://open.fan-b.com/help/demo/sdk/demo-sign.php
$method = "GET";
$url = "https://api-gw.fan-b.com/jd/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10335871600";
$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.fan-b.com/help/demo/sdk/onebound-api-sdk.zip
include ("ObApiClient.php");

$obapi = new otao\ObApiClient();
$obapi->api_url = "http://api-gw.fan-b.com/";
$obapi->api_urls = array("http://api-gw.fan-b.com/","http://api-1.fan-b.com/");//备用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_get_app",
	                "api_params"=>array (
  'num_iid' => '10335871600',
)
                )
            );
 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.fan-b.com/jd/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10335871600";
		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.fan-b.com/jd/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10335871600";
	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.fan-b.com/jd/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10335871600"
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.fan-b.com/jd/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10335871600", 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.fan-b.com/jd/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({"num_iid":"10335871600"})// 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.fan-b.com", // 
    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_get_app",
     "api_params": {"num_iid":"10335871600"}//num_iid=10335871600,#具体参数请参考文档说明
     },
     function(e){
        document.querySelector("#api_data_box").innerHTML=JSON.stringify(e)
     }
);
</script>
require "net/http"
require "uri"
url = URI("https://api-gw.fan-b.com/jd/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10335871600")
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.fan-b.com/jd/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10335871600")!
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.fan-b.com/jd/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10335871600"];

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.fan-b.com/jd/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10335871600";
  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.fan-b.com/jd/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10335871600");
         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.fan-b.com/jd/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10335871600", (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.fan-b.com/jd/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10335871600")
    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.fan-b.com/jd/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10335871600")?;
    let mut content = String::new();
    resp.read_to_string(&mut content)?;

    println!("{}", content);

    Ok(())
}

响应示例
{
	"item": {
		"data": {
			"attrResult": {
				"colorSize": [{
					"1": "沙漠色钛金属",
					"2": "128GB",
					"3": "公开版",
					"imagePath": "jfs\/t1\/93324\/28\/54603\/34534\/6723af10F7448e1c8\/9d54bfb7cec3e8e4.png",
					"index": 1,
					"sequenceNo1": 1,
					"sequenceNo2": 1,
					"sequenceNo3": 1,
					"skuId": "100142621600",
					"specName": "购买方式"
				},
				{
					"1": "沙漠色钛金属",
					"2": "128GB",
					"3": "快充套装",
					"imagePath": "jfs\/t1\/134079\/10\/44859\/15465\/67091f03F7c4d4c62\/8348275115657c7f.png",
					"index": 2,
					"sequenceNo1": 1,
					"sequenceNo2": 1,
					"sequenceNo3": 2,
					"skuId": "100122477663",
					"specName": "购买方式"
				},
				{
					"1": "沙漠色钛金属",
					"2": "128GB",
					"3": "24期分期",
					"imagePath": "jfs\/t1\/240817\/35\/20981\/27452\/6723aa03F540c1c11\/a1b5b19355971276.png",
					"index": 3,
					"sequenceNo1": 1,
					"sequenceNo2": 1,
					"sequenceNo3": 3,
					"skuId": "100122443021",
					"specName": "购买方式"
				},
				{
					"1": "沙漠色钛金属",
					"2": "256GB",
					"3": "公开版",
					"imagePath": "jfs\/t1\/98414\/18\/54013\/34534\/6723aed8Ffabd4820\/368085ba1c1e5320.png",
					"index": 4,
					"sequenceNo1": 1,
					"sequenceNo2": 2,
					"sequenceNo3": 1,
					"skuId": "100142621580",
					"specName": "购买方式"
				},
				{
					"1": "沙漠色钛金属",
					"2": "256GB",
					"3": "快充套装",
					"imagePath": "jfs\/t1\/224274\/27\/19879\/15465\/67091f04Fece55415\/fe3a04d7ef2cafc5.png",
					"index": 5,
					"sequenceNo1": 1,
					"sequenceNo2": 2,
					"sequenceNo3": 2,
					"skuId": "100122477669",
					"specName": "购买方式"
				},
				{
					"1": "沙漠色钛金属",
					"2": "256GB",
					"3": "24期分期",
					"imagePath": "jfs\/t1\/108742\/39\/57074\/27523\/6723aa0fFca03cbe5\/148d1ca4be0debf2.png",
					"index": 6,
					"sequenceNo1": 1,
					"sequenceNo2": 2,
					"sequenceNo3": 3,
					"skuId": "100148031606",
					"specName": "购买方式"
				},
				{
					"1": "沙漠色钛金属",
					"2": "512GB",
					"3": "公开版",
					"imagePath": "jfs\/t1\/104357\/22\/55622\/31403\/67245654Fe4ee1220\/cf4ae64b45801f2e.png",
					"index": 7,
					"sequenceNo1": 1,
					"sequenceNo2": 3,
					"sequenceNo3": 1,
					"skuId": "100118874253",
					"specName": "购买方式"
				},
				{
					"1": "沙漠色钛金属",
					"2": "512GB",
					"3": "快充套装",
					"imagePath": "jfs\/t1\/163929\/15\/49345\/15465\/67091f07F99b0e789\/1e347757ffdf5c29.png",
					"index": 8,
					"sequenceNo1": 1,
					"sequenceNo2": 3,
					"sequenceNo3": 2,
					"skuId": "100122477941",
					"specName": "购买方式"
				},
				{
					"1": "沙漠色钛金属",
					"2": "512GB",
					"3": "24期分期",
					"imagePath": "jfs\/t1\/107466\/11\/57224\/27392\/6723aa0cF1ada2d75\/f992d34a9d0741f5.png",
					"index": 9,
					"sequenceNo1": 1,
					"sequenceNo2": 3,
					"sequenceNo3": 3,
					"skuId": "100148031370",
					"specName": "购买方式"
				},
				{
					"1": "沙漠色钛金属",
					"2": "1TB",
					"3": "公开版",
					"imagePath": "jfs\/t1\/192626\/39\/50077\/34523\/6723aec0Fdd73a2c9\/ce44fa8b5b389506.png",
					"index": 10,
					"sequenceNo1": 1,
					"sequenceNo2": 4,
					"sequenceNo3": 1,
					"skuId": "100118874265",
					"specName": "购买方式"
				},
				{
					"1": "沙漠色钛金属",
					"2": "1TB",
					"3": "快充套装",
					"imagePath": "jfs\/t1\/211345\/22\/44520\/15465\/67091f15Fe587b23d\/5093462ccd989873.png",
					"index": 11,
					"sequenceNo1": 1,
					"sequenceNo2": 4,
					"sequenceNo3": 2,
					"skuId": "100148031578",
					"specName": "购买方式"
				},
				{
					"1": "沙漠色钛金属",
					"2": "1TB",
					"3": "24期分期",
					"imagePath": "jfs\/t1\/137483\/24\/48199\/27317\/6723aa13Fe790cad5\/763dda8abc2a5987.png",
					"index": 12,
					"sequenceNo1": 1,
					"sequenceNo2": 4,
					"sequenceNo3": 3,
					"skuId": "100148031644",
					"specName": "购买方式"
				},
				{
					"1": "原色钛金属",
					"2": "128GB",
					"3": "公开版",
					"imagePath": "jfs\/t1\/148078\/24\/48895\/32676\/6723af11F8dcbf097\/8545401f091552b4.png",
					"index": 13,
					"sequenceNo1": 2,
					"sequenceNo2": 1,
					"sequenceNo3": 1,
					"skuId": "100142621606",
					"specName": "购买方式"
				},
				{
					"1": "原色钛金属",
					"2": "128GB",
					"3": "快充套装",
					"imagePath": "jfs\/t1\/196080\/28\/47467\/13665\/67091f16Ff81d7b04\/be705f537abd199c.png",
					"index": 14,
					"sequenceNo1": 2,
					"sequenceNo2": 1,
					"sequenceNo3": 2,
					"skuId": "100148031602",
					"specName": "购买方式"
				},
				{
					"1": "原色钛金属",
					"2": "128GB",
					"3": "24期分期",
					"imagePath": "jfs\/t1\/216595\/8\/46266\/25584\/6723aa06Fb2df1bcc\/62930b700dbc84c3.png",
					"index": 15,
					"sequenceNo1": 2,
					"sequenceNo2": 1,
					"sequenceNo3": 3,
					"skuId": "100122443041",
					"specName": "购买方式"
				},
				{
					"1": "原色钛金属",
					"2": "256GB",
					"3": "公开版",
					"imagePath": "jfs\/t1\/167909\/9\/50537\/32676\/6723af13F436c0abb\/641fe90858ca96cd.png",
					"index": 16,
					"sequenceNo1": 2,
					"sequenceNo2": 2,
					"sequenceNo3": 1,
					"skuId": "100142621642",
					"specName": "购买方式"
				},
				{
					"1": "原色钛金属",
					"2": "256GB",
					"3": "快充套装",
					"imagePath": "jfs\/t1\/188686\/15\/48251\/13665\/67091f17Fe0eac737\/a4f7e1934e3ade46.png",
					"index": 17,
					"sequenceNo1": 2,
					"sequenceNo2": 2,
					"sequenceNo3": 2,
					"skuId": "100148031610",
					"specName": "购买方式"
				},
				{
					"1": "原色钛金属",
					"2": "256GB",
					"3": "24期分期",
					"imagePath": "jfs\/t1\/173252\/29\/51061\/25654\/6723aa11F6f6d29cf\/835fd5768bb702be.png",
					"index": 18,
					"sequenceNo1": 2,
					"sequenceNo2": 2,
					"sequenceNo3": 3,
					"skuId": "100148031624",
					"specName": "购买方式"
				},
				{
					"1": "原色钛金属",
					"2": "512GB",
					"3": "公开版",
					"imagePath": "jfs\/t1\/221150\/15\/46221\/29553\/67245662F8d9c0b92\/f3779558f0e92d1d.png",
					"index": 19,
					"sequenceNo1": 2,
					"sequenceNo2": 3,
					"sequenceNo3": 1,
					"skuId": "100118874255",
					"specName": "购买方式"
				},
				{
					"1": "原色钛金属",
					"2": "512GB",
					"3": "快充套装",
					"imagePath": "jfs\/t1\/149611\/12\/46719\/13665\/67091f11Fc089d98e\/aaed837b65a04f9b.png",
					"index": 20,
					"sequenceNo1": 2,
					"sequenceNo2": 3,
					"sequenceNo3": 2,
					"skuId": "100148031178",
					"specName": "购买方式"
				},
				{
					"1": "原色钛金属",
					"2": "512GB",
					"3": "24期分期",
					"imagePath": "jfs\/t1\/217143\/31\/45891\/25577\/6723aa0aF7aa86e19\/c6d68adae08b1893.png",
					"index": 21,
					"sequenceNo1": 2,
					"sequenceNo2": 3,
					"sequenceNo3": 3,
					"skuId": "100122477955",
					"specName": "购买方式"
				},
				{
					"1": "原色钛金属",
					"2": "1TB",
					"3": "公开版",
					"imagePath": "jfs\/t1\/210156\/36\/46618\/32676\/6723af11F765f57d9\/643b067ef97a4d3c.png",
					"index": 22,
					"sequenceNo1": 2,
					"sequenceNo2": 4,
					"sequenceNo3": 1,
					"skuId": "100142621622",
					"specName": "购买方式"
				},
				{
					"1": "原色钛金属",
					"2": "1TB",
					"3": "快充套装",
					"imagePath": "jfs\/t1\/90939\/7\/46780\/13665\/67091f09F8604f470\/6670dc31ba48c1e3.png",
					"index": 23,
					"sequenceNo1": 2,
					"sequenceNo2": 4,
					"sequenceNo3": 2,
					"skuId": "100122477973",
					"specName": "购买方式"
				},
				{
					"1": "原色钛金属",
					"2": "1TB",
					"3": "24期分期",
					"imagePath": "jfs\/t1\/134137\/30\/47176\/25448\/6723aa09F7134a59f\/b4dc51b7c9fd4912.png",
					"index": 24,
					"sequenceNo1": 2,
					"sequenceNo2": 4,
					"sequenceNo3": 3,
					"skuId": "100122477841",
					"specName": "购买方式"
				},
				{
					"1": "白色钛金属",
					"2": "128GB",
					"3": "公开版",
					"imagePath": "jfs\/t1\/180323\/4\/50673\/32232\/6723af12Fd7397963\/62515d307909e821.png",
					"index": 25,
					"sequenceNo1": 3,
					"sequenceNo2": 1,
					"sequenceNo3": 1,
					"skuId": "100142621626",
					"specName": "购买方式"
				},
				{
					"1": "白色钛金属",
					"2": "128GB",
					"3": "快充套装",
					"imagePath": "jfs\/t1\/171827\/32\/45406\/13111\/67091f05F3f1d5774\/b768a81fd402170a.png",
					"index": 26,
					"sequenceNo1": 3,
					"sequenceNo2": 1,
					"sequenceNo3": 2,
					"skuId": "100122477837",
					"specName": "购买方式"
				},
				{
					"1": "白色钛金属",
					"2": "128GB",
					"3": "24期分期",
					"imagePath": "jfs\/t1\/102895\/20\/54550\/25136\/6723aa0eF663af6d6\/6558e727b60c53df.png",
					"index": 27,
					"sequenceNo1": 3,
					"sequenceNo2": 1,
					"sequenceNo3": 3,
					"skuId": "100147979216",
					"specName": "购买方式"
				},
				{
					"1": "白色钛金属",
					"2": "256GB",
					"3": "公开版",
					"imagePath": "jfs\/t1\/221128\/23\/46409\/32232\/6723aebaF7b55fa63\/fd6ce814a0576ff2.png",
					"index": 28,
					"sequenceNo1": 3,
					"sequenceNo2": 2,
					"sequenceNo3": 1,
					"skuId": "100118874239",
					"specName": "购买方式"
				},
				{
					"1": "白色钛金属",
					"2": "256GB",
					"3": "快充套装",
					"imagePath": "jfs\/t1\/165894\/23\/49231\/13111\/67091f08F156fd896\/b23223d8743d9c1b.png",
					"index": 29,
					"sequenceNo1": 3,
					"sequenceNo2": 2,
					"sequenceNo3": 2,
					"skuId": "100122477965",
					"specName": "购买方式"
				},
				{
					"1": "白色钛金属",
					"2": "256GB",
					"3": "24期分期",
					"imagePath": "jfs\/t1\/242689\/38\/20032\/25201\/6723aa15F8c4ffd32\/cf0a7b266ad16523.png",
					"index": 30,
					"sequenceNo1": 3,
					"sequenceNo2": 2,
					"sequenceNo3": 3,
					"skuId": "100148031668",
					"specName": "购买方式"
				},
				{
					"1": "白色钛金属",
					"2": "512GB",
					"3": "公开版",
					"imagePath": "jfs\/t1\/216357\/32\/46045\/27057\/6724566aF48957b85\/5bed0f8c286ceff5.png",
					"index": 31,
					"sequenceNo1": 3,
					"sequenceNo2": 3,
					"sequenceNo3": 1,
					"skuId": "100142621602",
					"specName": "购买方式"
				},
				{
					"1": "白色钛金属",
					"2": "512GB",
					"3": "快充套装",
					"imagePath": "jfs\/t1\/241483\/38\/19611\/13111\/67091f12Fe98a72d3\/d51cce597ac894f7.png",
					"index": 32,
					"sequenceNo1": 3,
					"sequenceNo2": 3,
					"sequenceNo3": 2,
					"skuId": "100148031196",
					"specName": "购买方式"
				},
				{
					"1": "白色钛金属",
					"2": "512GB",
					"3": "24期分期",
					"imagePath": "jfs\/t1\/242084\/25\/13635\/25088\/6723aa0aF7eab84dd\/48593b88bfaf41ee.png",
					"index": 33,
					"sequenceNo1": 3,
					"sequenceNo2": 3,
					"sequenceNo3": 3,
					"skuId": "100122477913",
					"specName": "购买方式"
				},
				{
					"1": "白色钛金属",
					"2": "1TB",
					"3": "公开版",
					"imagePath": "jfs\/t1\/162515\/5\/51015\/32228\/6723aebbF2961121b\/ee4dfc2007c52fae.png",
					"index": 34,
					"sequenceNo1": 3,
					"sequenceNo2": 4,
					"sequenceNo3": 1,
					"skuId": "100118874241",
					"specName": "购买方式"
				},
				{
					"1": "白色钛金属",
					"2": "1TB",
					"3": "快充套装",
					"imagePath": "jfs\/t1\/172492\/33\/48610\/13111\/67091f18F89a13167\/a1e8da08da29424e.png",
					"index": 35,
					"sequenceNo1": 3,
					"sequenceNo2": 4,
					"sequenceNo3": 2,
					"skuId": "100148031640",
					"specName": "购买方式"
				},
				{
					"1": "白色钛金属",
					"2": "1TB",
					"3": "24期分期",
					"imagePath": "jfs\/t1\/96379\/19\/54350\/25001\/6723aa0eF103f19a6\/8ed183d32103e71a.png",
					"index": 36,
					"sequenceNo1": 3,
					"sequenceNo2": 4,
					"sequenceNo3": 3,
					"skuId": "100148031612",
					"specName": "购买方式"
				},
				{
					"1": "黑色钛金属",
					"2": "128GB",
					"3": "公开版",
					"imagePath": "jfs\/t1\/198492\/15\/48184\/32141\/6723aed6Faa6a4e72\/1b082659d3f91d4d.png",
					"index": 37,
					"sequenceNo1": 4,
					"sequenceNo2": 1,
					"sequenceNo3": 1,
					"skuId": "100118874267",
					"specName": "购买方式"
				},
				{
					"1": "黑色钛金属",
					"2": "128GB",
					"3": "快充套装",
					"imagePath": "jfs\/t1\/156224\/25\/47478\/13131\/67091f08F23656128\/ea88c4659eb181fa.png",
					"index": 38,
					"sequenceNo1": 4,
					"sequenceNo2": 1,
					"sequenceNo3": 2,
					"skuId": "100122477957",
					"specName": "购买方式"
				},
				{
					"1": "黑色钛金属",
					"2": "128GB",
					"3": "24期分期",
					"imagePath": "jfs\/t1\/110610\/22\/54170\/25063\/6723aa0cF0dad1118\/99118b92c5d65724.png",
					"index": 39,
					"sequenceNo1": 4,
					"sequenceNo2": 1,
					"sequenceNo3": 3,
					"skuId": "100148031494",
					"specName": "购买方式"
				},
				{
					"1": "黑色钛金属",
					"2": "256GB",
					"3": "公开版",
					"imagePath": "jfs\/t1\/172368\/19\/50432\/32141\/6723af12Fb438f234\/6aacb82edc8096fc.png",
					"index": 40,
					"sequenceNo1": 4,
					"sequenceNo2": 2,
					"sequenceNo3": 1,
					"skuId": "100142621624",
					"specName": "购买方式"
				},
				{
					"1": "黑色钛金属",
					"2": "256GB",
					"3": "快充套装",
					"imagePath": "jfs\/t1\/240593\/32\/18981\/13131\/67091f13Fde786479\/3eeb501a01c6e59c.png",
					"index": 41,
					"sequenceNo1": 4,
					"sequenceNo2": 2,
					"sequenceNo3": 2,
					"skuId": "100148031222",
					"specName": "购买方式"
				},
				{
					"1": "黑色钛金属",
					"2": "256GB",
					"3": "24期分期",
					"imagePath": "jfs\/t1\/104534\/23\/54329\/25137\/6723aa0aFf697e35e\/d6a12c1f53bc91f5.png",
					"index": 42,
					"sequenceNo1": 4,
					"sequenceNo2": 2,
					"sequenceNo3": 3,
					"skuId": "100122477967",
					"specName": "购买方式"
				},
				{
					"1": "黑色钛金属",
					"2": "512GB",
					"3": "公开版",
					"imagePath": "jfs\/t1\/198656\/6\/47592\/29053\/67245679Fe5768ebf\/6366aa3ad62cd13b.png",
					"index": 43,
					"sequenceNo1": 4,
					"sequenceNo2": 3,
					"sequenceNo3": 1,
					"skuId": "100118874263",
					"specName": "购买方式"
				},
				{
					"1": "黑色钛金属",
					"2": "512GB",
					"3": "快充套装",
					"imagePath": "jfs\/t1\/243963\/33\/20921\/15340\/67091f13F21651cfc\/abcaf51eb7c87ed3.png",
					"index": 44,
					"sequenceNo1": 4,
					"sequenceNo2": 3,
					"sequenceNo3": 2,
					"skuId": "100148031480",
					"specName": "购买方式"
				},
				{
					"1": "黑色钛金属",
					"2": "512GB",
					"3": "24期分期",
					"imagePath": "jfs\/t1\/114945\/29\/36130\/27323\/6723aa07F75375be1\/743ce9b23417a809.png",
					"index": 45,
					"sequenceNo1": 4,
					"sequenceNo2": 3,
					"sequenceNo3": 3,
					"skuId": "100122477703",
					"specName": "购买方式"
				},
				{
					"1": "黑色钛金属",
					"2": "1TB",
					"3": "公开版",
					"imagePath": "jfs\/t1\/173877\/31\/50062\/32142\/6723aebeFce0bb294\/933f45c2772635f4.png",
					"index": 46,
					"sequenceNo1": 4,
					"sequenceNo2": 4,
					"sequenceNo3": 1,
					"skuId": "100118874257",
					"specName": "购买方式"
				},
				{
					"1": "黑色钛金属",
					"2": "1TB",
					"3": "快充套装",
					"imagePath": "jfs\/t1\/248809\/27\/20649\/13131\/67091f03F9db3c0c2\/5d1ff0171eaa8d5f.png",
					"index": 47,
					"sequenceNo1": 4,
					"sequenceNo2": 4,
					"sequenceNo3": 2,
					"skuId": "100122477723",
					"specName": "购买方式"
				},
				{
					"1": "黑色钛金属",
					"2": "1TB",
					"3": "24期分期",
					"imagePath": "jfs\/t1\/205501\/18\/47679\/24928\/6723aa12F67514850\/94bd046bb55c5663.png",
					"index": 48,
					"sequenceNo1": 4,
					"sequenceNo2": 4,
					"sequenceNo3": 3,
					"skuId": "100148031636",
					"specName": "购买方式"
				}],
				"saleProp": {
					"1": "外观",
					"2": "版本",
					"3": "购买方式"
				},
				"salePropSeq": {
					"1": ["沙漠色钛金属", "原色钛金属", "白色钛金属", "黑色钛金属"],
					"2": ["128GB", "256GB", "512GB", "1TB"],
					"3": ["公开版", "快充套装", "24期分期"]
				},
				"showList": [{
					"外观": "沙漠色钛金属,黑色钛金属,原色钛金属,白色钛金属"
				},
				{
					"版本": "128GB,1TB,512GB,256GB"
				},
				{
					"购买方式": "公开版,快充套装,24期分期"
				}],
				"showMap": {
					"外观": "沙漠色钛金属,黑色钛金属,原色钛金属,白色钛金属",
					"版本": "128GB,1TB,512GB,256GB",
					"购买方式": "公开版,快充套装,24期分期"
				},
				"skuMap": {
					"原色钛金属,128GB,24期分期": "100122443041",
					"原色钛金属,128GB,公开版": "100142621606",
					"原色钛金属,128GB,快充套装": "100148031602",
					"原色钛金属,1TB,24期分期": "100122477841",
					"原色钛金属,1TB,公开版": "100142621622",
					"原色钛金属,1TB,快充套装": "100122477973",
					"原色钛金属,256GB,24期分期": "100148031624",
					"原色钛金属,256GB,公开版": "100142621642",
					"原色钛金属,256GB,快充套装": "100148031610",
					"原色钛金属,512GB,24期分期": "100122477955",
					"原色钛金属,512GB,公开版": "100118874255",
					"原色钛金属,512GB,快充套装": "100148031178",
					"沙漠色钛金属,128GB,24期分期": "100122443021",
					"沙漠色钛金属,128GB,公开版": "100142621600",
					"沙漠色钛金属,128GB,快充套装": "100122477663",
					"沙漠色钛金属,1TB,24期分期": "100148031644",
					"沙漠色钛金属,1TB,公开版": "100118874265",
					"沙漠色钛金属,1TB,快充套装": "100148031578",
					"沙漠色钛金属,256GB,24期分期": "100148031606",
					"沙漠色钛金属,256GB,公开版": "100142621580",
					"沙漠色钛金属,256GB,快充套装": "100122477669",
					"沙漠色钛金属,512GB,24期分期": "100148031370",
					"沙漠色钛金属,512GB,公开版": "100118874253",
					"沙漠色钛金属,512GB,快充套装": "100122477941",
					"白色钛金属,128GB,24期分期": "100147979216",
					"白色钛金属,128GB,公开版": "100142621626",
					"白色钛金属,128GB,快充套装": "100122477837",
					"白色钛金属,1TB,24期分期": "100148031612",
					"白色钛金属,1TB,公开版": "100118874241",
					"白色钛金属,1TB,快充套装": "100148031640",
					"白色钛金属,256GB,24期分期": "100148031668",
					"白色钛金属,256GB,公开版": "100118874239",
					"白色钛金属,256GB,快充套装": "100122477965",
					"白色钛金属,512GB,24期分期": "100122477913",
					"白色钛金属,512GB,公开版": "100142621602",
					"白色钛金属,512GB,快充套装": "100148031196",
					"黑色钛金属,128GB,24期分期": "100148031494",
					"黑色钛金属,128GB,公开版": "100118874267",
					"黑色钛金属,128GB,快充套装": "100122477957",
					"黑色钛金属,1TB,24期分期": "100148031636",
					"黑色钛金属,1TB,公开版": "100118874257",
					"黑色钛金属,1TB,快充套装": "100122477723",
					"黑色钛金属,256GB,24期分期": "100122477967",
					"黑色钛金属,256GB,公开版": "100142621624",
					"黑色钛金属,256GB,快充套装": "100148031222",
					"黑色钛金属,512GB,24期分期": "100122477703",
					"黑色钛金属,512GB,公开版": "100118874263",
					"黑色钛金属,512GB,快充套装": "100148031480"
				}
			},
			"brandId": 14026,
			"brandName": "Apple",
			"canUseDong": true,
			"canUseJing": false,
			"deliveryMethod": 2,
			"deliveryMethodSelected": 2,
			"extendedWarranty": 0,
			"firstCategoryId": 9987,
			"firstCategoryName": "手机通讯",
			"gift": 0,
			"global": false,
			"hit": 0,
			"imagePrefix": "https:\/\/img11.360buyimg.com\/n1\/",
			"images": [{
				"created": 1730434863000,
				"id": 62466426,
				"isPrimary": 1,
				"modified": 1730434863000,
				"path": "jfs\/t1\/104357\/22\/55622\/31403\/67245654Fe4ee1220\/cf4ae64b45801f2e.png",
				"skuId": 100118874253,
				"type": 0,
				"yn": 1
			},
			{
				"created": 1730434863000,
				"id": 62466427,
				"isPrimary": 0,
				"modified": 1730434863000,
				"orderSort": 1,
				"path": "jfs\/t1\/6165\/17\/35750\/11381\/66df7335Fef048d95\/91f1f61f8448031e.jpg",
				"skuId": 100118874253,
				"type": 0,
				"yn": 1
			},
			{
				"created": 1730434863000,
				"id": 62466428,
				"isPrimary": 0,
				"modified": 1730434863000,
				"orderSort": 2,
				"path": "jfs\/t1\/135094\/39\/43983\/34485\/66df7335Feb3ce1b0\/cee2a4aef26b1383.jpg",
				"skuId": 100118874253,
				"type": 0,
				"yn": 1
			},
			{
				"created": 1730434863000,
				"id": 62466429,
				"isPrimary": 0,
				"modified": 1730434863000,
				"orderSort": 3,
				"path": "jfs\/t1\/92101\/37\/44504\/14179\/66df7336Fe5a90de9\/8c02a0936d474df3.jpg",
				"skuId": 100118874253,
				"type": 0,
				"yn": 1
			},
			{
				"created": 1730434863000,
				"id": 62466430,
				"isPrimary": 0,
				"modified": 1730434863000,
				"orderSort": 4,
				"path": "jfs\/t1\/134032\/1\/46728\/28992\/66df7336Fca229cc9\/044579fb25df1f7f.jpg",
				"skuId": 100118874253,
				"type": 0,
				"yn": 1
			},
			{
				"created": 1730434863000,
				"id": 62466431,
				"isPrimary": 0,
				"modified": 1730434863000,
				"orderSort": 5,
				"path": "jfs\/t1\/8356\/24\/26146\/54086\/66df7337F5a8b088e\/29f4368393c8419d.jpg",
				"skuId": 100118874253,
				"type": 0,
				"yn": 1
			},
			{
				"created": 1730434863000,
				"id": 62466432,
				"isPrimary": 0,
				"modified": 1730434863000,
				"orderSort": 6,
				"path": "jfs\/t1\/243901\/14\/16901\/91567\/66df7337Fbde944ef\/ddf2fb6e1a633a8b.jpg",
				"skuId": 100118874253,
				"type": 0,
				"yn": 1
			},
			{
				"created": 1730434863000,
				"id": 62466433,
				"isPrimary": 0,
				"modified": 1730434863000,
				"orderSort": 7,
				"path": "jfs\/t1\/2619\/39\/24899\/23477\/66df7338Fd65fbf1c\/098fcc6fc34b8bcb.jpg",
				"skuId": 100118874253,
				"type": 0,
				"yn": 1
			}],
			"includeDaJingZhunDaFreight": false,
			"includeExtraFreight": false,
			"includeGeneralFreight": false,
			"includeJiSuDaFreight": false,
			"includeXiaoJingZhunDaFreight": false,
			"includeXuZhongFreight": false,
			"inventory": 1,
			"isCityDelivery": false,
			"isJMa": false,
			"isPresell": 0,
			"isSuperStore": 1,
			"jdOnShelves": 1,
			"jdOnShelvesTime": 1726109082000,
			"jdShip": 1,
			"lowestBuy": 1,
			"mainPic": "jfs\/t1\/104357\/22\/55622\/31403\/67245654Fe4ee1220\/cf4ae64b45801f2e.png",
			"maxPurchaseQty": 1,
			"noSingleBuy": 0,
			"offShelvesOrder": 0,
			"oldForNew": 0,
			"oldForNewInfo": {
				"oldForNew": 0
			},
			"popShopId": "1000000127",
			"popShopInfo": {
				"fullLogoUriExt": "http:\/\/img30.360buyimg.com\/popshop\/jfs\/t1\/209877\/3\/25564\/7869\/62fdebabEdceae4a7\/0d757d8076b98466.jpg",
				"logoUriExt": "\/popshop\/jfs\/t1\/209877\/3\/25564\/7869\/62fdebabEdceae4a7\/0d757d8076b98466.jpg"
			},
			"popShopName": "Apple产品京东自营旗舰店",
			"presaleArrivalTime": "",
			"priceResult": {
				"originalPrice": "10999.00",
				"skuPrice": "10999.00"
			},
			"proAfterSale": "http:\/\/in.m.jd.com\/product\/baozhuang\/100118874253.html",
			"proDescribes": "http:\/\/in.m.jd.com\/product\/jieshao\/100118874253.html",
			"proSpecifications": "http:\/\/in.m.jd.com\/product\/guige\/100118874253.html",
			"productAdvertisement": "【双11力度玩超大!】iPhone16Pro系列领券立减500元,以旧换新加补500元,还享12期限时白条免息",
			"productAdvertisementLink": "https:\/\/pro.m.jd.com\/mall\/active\/UEro4WAa7vEhMypakgZQQDqfZhU\/index.html?babelChannel=ttt25",
			"productIconList": [{
				"helpLink": "\/\/help.jd.com\/user\/issue\/103-983.html",
				"iconCode": "sendpay_zhun",
				"iconSrc": "京准达",
				"iconTip": "选择京准达服务,可指定精确时间点收货;若京东责任超时,即时赔付",
				"iconType": 0,
				"picUrl": "http:\/\/m.360buyimg.com\/mobilecms\/jfs\/t3172\/266\/1698067915\/1634\/64a0c40e\/57d25fcfNd9c62bb7.png",
				"showName": "京准达"
			},
			{
				"helpLink": "https:\/\/help.jd.com\/user\/issue\/91-953.html",
				"iconCode": "sendpay_211",
				"iconSrc": "211限时达",
				"iconTip": "上午下单,下午送达",
				"iconType": 0,
				"picUrl": "\/\/static.360buyimg.com\/item\/assets\/picon\/zhongbiao.png",
				"showName": "211限时达"
			},
			{
				"helpLink": "http:\/\/help.jd.com\/user\/issue\/126-3780.html  ",
				"iconCode": "service_qitiantuihuo",
				"iconSrc": "7天无理由退货(防伪签、密封条损毁不支持)",
				"iconTip": "支持7天无理由退货(防伪签、密封条损毁不支持)",
				"iconType": 0,
				"picUrl": "\",
				"showName": "7天无理由退货(防伪签、密封条损毁不支持)"
			},
			{
				"helpLink": "\/\/help.jd.com\/user\/issue\/103-983.html",
				"iconCode": "service_yysh",
				"iconSrc": "预约送货",
				"iconTip": "京东物流为该商品提供预约送货服务",
				"iconType": 0,
				"picUrl": "https:\/\/m.360buyimg.com\/babel\/jfs\/t1\/116316\/15\/7402\/1031\/5ec22ca4E713f857c\/dd49784b20933cf5.png",
				"showName": "预约送货"
			},
			{
				"helpLink": "https:\/\/help.jd.com\/user\/issue\/103-983.html",
				"iconCode": "service_bfsh",
				"iconSrc": "部分收货",
				"iconTip": "如果收件人收货时发现部分货物存在缺少配件、物流损等情形,京东物流提供订单半收服务",
				"iconType": 0,
				"picUrl": "https:\/\/m.360buyimg.com\/babel\/jfs\/t1\/108073\/34\/18517\/1071\/5ec22ce0E11a3b1c5\/f8ffea5f4cafa0f9.png",
				"showName": "部分收货"
			},
			{
				"helpLink": "https:\/\/help.jd.com\/user\/issue\/254-4130.html",
				"iconCode": "service_sssm",
				"iconSrc": "送货上门",
				"iconTip": "京东快递为您提供送货上门服务",
				"iconType": 0,
				"picUrl": "https:\/\/m.360buyimg.com\/babel\/jfs\/t1\/115738\/37\/12143\/1066\/5f0c7d11E4faee520\/de3879572e2b2014.png",
				"showName": "送货上门"
			},
			{
				"helpLink": "https:\/\/help.jd.com\/user\/issue\/103-983.html",
				"iconCode": "service_bdc",
				"iconSrc": "本地仓",
				"iconTip": "从您所在城市的京东仓库发货",
				"iconType": 0,
				"picUrl": "https:\/\/m.360buyimg.com\/babel\/jfs\/t1\/118789\/35\/7236\/1045\/5ec22c7dEb1857fd5\/d20114dca91e1730.png",
				"showName": "本地仓"
			},
			{
				"helpLink": "\/\/help.jd.com\/user\/issue\/103-983.html",
				"iconCode": "free_delivery_zhong",
				"iconSrc": "59元免基础运费",
				"iconTip": "所选地址自营订单满59元免基础运费(10kg内),超出重量加收1元\/kg续重运费。",
				"iconType": 0,
				"picUrl": "\/\/static.360buyimg.com\/item\/assets\/picon\/mianyunfei.png",
				"showName": "59元免基础运费"
			},
			{
				"helpLink": "https:\/\/help.jd.com\/user\/issue\/list-81.html",
				"iconCode": "service_jdwl",
				"iconSrc": "京东物流",
				"iconTip": "京东物流为您提供仓配一体供应链服务",
				"iconType": 0,
				"picUrl": "https:\/\/m.360buyimg.com\/babel\/jfs\/t1\/130756\/9\/11972\/4289\/5f8674d3Eabfebbef\/bb964241bd789a72.png",
				"showName": "京东物流"
			}],
			"promiseVo": {
				"promiseIconResult": [{
					"helpLink": "\/\/help.jd.com\/user\/issue\/103-983.html",
					"iconCode": "sendpay_zhun",
					"iconSrc": "京准达",
					"iconTip": "选择京准达服务,可指定精确时间点收货;若京东责任超时,即时赔付",
					"iconType": 0,
					"picUrl": "http:\/\/m.360buyimg.com\/mobilecms\/jfs\/t3172\/266\/1698067915\/1634\/64a0c40e\/57d25fcfNd9c62bb7.png",
					"resultCode": 1,
					"showName": "京准达"
				},
				{
					"helpLink": "https:\/\/help.jd.com\/user\/issue\/91-953.html",
					"iconCode": "sendpay_211",
					"iconSrc": "211限时达",
					"iconTip": "上午下单,下午送达",
					"iconType": 0,
					"picUrl": "\/\/static.360buyimg.com\/item\/assets\/picon\/zhongbiao.png",
					"resultCode": 1,
					"showName": "211限时达"
				},
				{
					"helpLink": "http:\/\/help.jd.com\/user\/issue\/126-3780.html  ",
					"iconCode": "service_qitiantuihuo",
					"iconSrc": "7天无理由退货(防伪签、密封条损毁不支持)",
					"iconTip": "支持7天无理由退货(防伪签、密封条损毁不支持)",
					"iconType": 0,
					"picUrl": "\",
					"resultCode": 1,
					"showName": "7天无理由退货(防伪签、密封条损毁不支持)"
				},
				{
					"helpLink": "\/\/help.jd.com\/user\/issue\/103-983.html",
					"iconCode": "service_yysh",
					"iconSrc": "预约送货",
					"iconTip": "京东物流为该商品提供预约送货服务",
					"iconType": 0,
					"picUrl": "https:\/\/m.360buyimg.com\/babel\/jfs\/t1\/116316\/15\/7402\/1031\/5ec22ca4E713f857c\/dd49784b20933cf5.png",
					"resultCode": 1,
					"showName": "预约送货"
				},
				{
					"helpLink": "https:\/\/help.jd.com\/user\/issue\/103-983.html",
					"iconCode": "service_bfsh",
					"iconSrc": "部分收货",
					"iconTip": "如果收件人收货时发现部分货物存在缺少配件、物流损等情形,京东物流提供订单半收服务",
					"iconType": 0,
					"picUrl": "https:\/\/m.360buyimg.com\/babel\/jfs\/t1\/108073\/34\/18517\/1071\/5ec22ce0E11a3b1c5\/f8ffea5f4cafa0f9.png",
					"resultCode": 1,
					"showName": "部分收货"
				},
				{
					"helpLink": "https:\/\/help.jd.com\/user\/issue\/254-4130.html",
					"iconCode": "service_sssm",
					"iconSrc": "送货上门",
					"iconTip": "京东快递为您提供送货上门服务",
					"iconType": 0,
					"picUrl": "https:\/\/m.360buyimg.com\/babel\/jfs\/t1\/115738\/37\/12143\/1066\/5f0c7d11E4faee520\/de3879572e2b2014.png",
					"resultCode": 1,
					"showName": "送货上门"
				},
				{
					"helpLink": "https:\/\/help.jd.com\/user\/issue\/103-983.html",
					"iconCode": "service_bdc",
					"iconSrc": "本地仓",
					"iconTip": "从您所在城市的京东仓库发货",
					"iconType": 0,
					"picUrl": "https:\/\/m.360buyimg.com\/babel\/jfs\/t1\/118789\/35\/7236\/1045\/5ec22c7dEb1857fd5\/d20114dca91e1730.png",
					"resultCode": 1,
					"showName": "本地仓"
				},
				{
					"helpLink": "\/\/help.jd.com\/user\/issue\/103-983.html",
					"iconCode": "free_delivery_zhong",
					"iconSrc": "59元免基础运费",
					"iconTip": "所选地址自营订单满59元免基础运费(10kg内),超出重量加收1元\/kg续重运费。",
					"iconType": 0,
					"picUrl": "\/\/static.360buyimg.com\/item\/assets\/picon\/mianyunfei.png",
					"resultCode": 1,
					"showName": "59元免基础运费"
				},
				{
					"helpLink": "https:\/\/help.jd.com\/user\/issue\/list-81.html",
					"iconCode": "service_jdwl",
					"iconSrc": "京东物流",
					"iconTip": "京东物流为您提供仓配一体供应链服务",
					"iconType": 0,
					"picUrl": "https:\/\/m.360buyimg.com\/babel\/jfs\/t1\/130756\/9\/11972\/4289\/5f8674d3Eabfebbef\/bb964241bd789a72.png",
					"resultCode": 1,
					"showName": "京东物流"
				}],
				"promiseResult": {
					"promiseResult": "23:59前下单,预计<b>明天(11月06日)<\/b>送达",
					"resultCode": 1
				},
				"resposneCode": 1,
				"weightValue": "0.36kg"
			},
			"saleable": true,
			"saleableInfo": {
				"hitReasonMap": [],
				"saleble": true
			},
			"seckillGoods": {
				"promotionStatus": false,
				"skuId": "100118874253"
			},
			"secondCategoryId": 653,
			"secondCategoryName": "手机",
			"serviceList": [{
				"productTypeIconUrl": "https:\/\/img20.360buyimg.com\/ling\/jfs\/t1\/164114\/1\/5369\/6898\/601a8334Ec18a021a\/cd75e2d8509f4f83.png",
				"productTypeId": "68",
				"productTypeName": "升级服务",
				"productTypeShowPrio": 1200,
				"serviceSkuList": [{
					"activityWriter": "原厂碎屏",
					"detailsInfo": "",
					"price": 319,
					"shortName": "首年碎屏",
					"showPrio": 57,
					"sku": 100023178239,
					"unitName": ""
				}]
			},
			{
				"productTypeIconUrl": "https:\/\/img30.360buyimg.com\/ling\/jfs\/t1\/164828\/30\/5106\/8768\/601a725aEcc029989\/9d28d1d7d9b7b897.png",
				"productTypeId": "71",
				"productTypeName": "延长服务",
				"productTypeShowPrio": 1400,
				"serviceSkuList": [{
					"activityWriter": "",
					"detailsInfo": "",
					"price": 400,
					"shortName": "1年延保",
					"showPrio": 8,
					"sku": 100039902874,
					"unitName": ""
				}]
			},
			{
				"productTypeIconUrl": "https:\/\/img20.360buyimg.com\/ling\/jfs\/t1\/184488\/13\/890\/8580\/608511dcEe9505079\/38a87977d9fcf09c.png",
				"productTypeId": "109",
				"productTypeName": "原厂配件服务",
				"productTypeShowPrio": 1600,
				"serviceSkuList": [{
					"activityWriter": "折叠屏专享",
					"detailsInfo": "",
					"price": 1199,
					"shortName": "首年碎屏",
					"showPrio": 73,
					"sku": 100039902086,
					"unitName": ""
				},
				{
					"activityWriter": "折叠屏专享",
					"detailsInfo": "",
					"price": 1899,
					"shortName": "两年碎屏",
					"showPrio": 78,
					"sku": 100039902058,
					"unitName": ""
				}]
			},
			{
				"productTypeIconUrl": "https:\/\/img12.360buyimg.com\/ling\/jfs\/t1\/152564\/37\/17121\/11836\/601a7246E217513dd\/703e6ac474c67d52.png",
				"productTypeId": "58",
				"productTypeName": "保障服务",
				"productTypeShowPrio": 7300,
				"serviceSkuList": [{
					"activityWriter": "赠故障换新",
					"detailsInfo": "",
					"price": 598,
					"shortName": "首年碎屏",
					"showPrio": 18,
					"sku": 100039902900,
					"unitName": ""
				},
				{
					"activityWriter": "原厂碎屏",
					"detailsInfo": "",
					"price": 399,
					"shortName": "两年碎屏",
					"showPrio": 56,
					"sku": 100039902134,
					"unitName": ""
				}]
			},
			{
				"productTypeIconUrl": "https:\/\/img30.360buyimg.com\/ling\/jfs\/t1\/94829\/13\/24821\/9973\/626a49d7E9b3fbf00\/0cab45d126f1a100.png",
				"productTypeId": "200",
				"productTypeName": "延长保修",
				"productTypeShowPrio": 8600,
				"serviceSkuList": [{
					"activityWriter": "赠电池保障",
					"detailsInfo": "",
					"price": 430,
					"shortName": "原厂延保2年",
					"showPrio": 53,
					"sku": 100049336844,
					"unitName": "",
					"wxjqsp": 0
				}]
			}],
			"shopId": "1002632075",
			"skuId": "100118874253",
			"skuName": "Apple\/苹果 iPhone 16 Pro(A3294)512GB 沙漠色钛金属 支持移动联通电信5G 双卡双待手机",
			"skuOnShelves": 1,
			"skuPopOrgType": 3,
			"skuPrice": "10999.00",
			"skuType": 0,
			"skuUpc": "195949770111",
			"spuId": "-1",
			"stkState": "33",
			"stock": 0,
			"subsidyResult": 1,
			"thirdCategoryId": 655,
			"thirdCategoryName": "手机",
			"venderId": 1000000127,
			"venderTypeDict": 3,
			"virtualSku": 0,
			"virtualSuit": 0
		},
		"product_list": {
			"propGroups": [{
				"atts": [{
					"attName": "机型",
					"vals": ["Apple iPhone 16 Pro"]
				},
				{
					"attName": "入网型号",
					"attRemark": "工业代号或者入网型号",
					"vals": ["A3294"]
				},
				{
					"attName": "上市日期",
					"vals": ["2024-09-10"]
				},
				{
					"attName": "电信设备进网许可证",
					"vals": ["是"]
				}],
				"groupName": "主体"
			},
			{
				"atts": [{
					"attName": "机身尺寸",
					"vals": ["宽71.5mm", "长149.6mm", "厚8.25mm"]
				},
				{
					"attName": "机身重量",
					"vals": ["199g"]
				},
				{
					"attName": "机身颜色",
					"vals": ["沙漠色钛金属"]
				}],
				"groupName": "基本信息"
			},
			{
				"atts": [{
					"attName": "机身内存",
					"vals": ["512GB"]
				},
				{
					"attName": "存储卡",
					"vals": ["不支持"]
				}],
				"groupName": "存储"
			},
			{
				"atts": [{
					"attName": "屏幕尺寸",
					"vals": ["6.3英寸"]
				},
				{
					"attName": "屏幕刷新率",
					"vals": ["以官网信息为准"]
				},
				{
					"attName": "屏幕特色",
					"vals": ["无"]
				}],
				"groupName": "屏幕"
			},
			{
				"atts": [{
					"attName": "后摄2-超广角像素",
					"vals": ["4800万像素"]
				},
				{
					"attName": "后摄3-tele像素",
					"vals": ["4800万像素"]
				},
				{
					"attName": "前摄主像素",
					"vals": ["1200万像素"]
				},
				{
					"attName": "拍照特色",
					"vals": ["三主摄"]
				}],
				"groupName": "摄像头"
			},
			{
				"atts": [{
					"attName": "充电功率",
					"vals": ["20W"]
				},
				{
					"attName": "无线充电",
					"vals": ["以官网信息为准"]
				}],
				"groupName": "电池信息"
			},
			{
				"atts": [{
					"attName": "生物识别",
					"vals": ["人脸识别"]
				}],
				"groupName": "手机特性"
			},
			{
				"atts": [{
					"attName": "充电接口",
					"vals": ["USB-C"]
				}],
				"groupName": "数据接口"
			},
			{
				"atts": [{
					"attName": "系统",
					"vals": ["iOS"]
				}],
				"groupName": "操作系统"
			},
			{
				"atts": [{
					"attName": "5G网络",
					"vals": ["支持5G"]
				},
				{
					"attName": "4G网络",
					"vals": ["4G TD-LTE", "4G FDD-LTE"]
				},
				{
					"attName": "双卡机类型",
					"vals": ["双卡双待"]
				},
				{
					"attName": "SIM卡数量",
					"vals": ["2个"]
				},
				{
					"attName": "SIM卡类型",
					"vals": ["Nano SIM"]
				}],
				"groupName": "网络支持"
			},
			{
				"atts": [{
					"attName": "CPU型号",
					"vals": ["A18 Pro"]
				},
				{
					"attName": "运行内存",
					"vals": ["未公布"]
				},
				{
					"attName": "机身内存",
					"vals": ["512GB"]
				},
				{
					"attName": "屏幕分辨率",
					"vals": ["FHD+"]
				},
				{
					"attName": "屏幕材质",
					"vals": ["OLED直屏"]
				},
				{
					"attName": "后摄主像素",
					"vals": ["4800万像素"]
				},
				{
					"attName": "三防标准",
					"vals": ["IP68"]
				},
				{
					"attName": "机身色系",
					"vals": ["金色系"]
				},
				{
					"attName": "风格",
					"vals": ["商务", "科技"]
				}],
				"groupName": "参数"
			}]
		},
		"share_info": {
			"KOInfo": {
				"beginTime": 0,
				"doing": false,
				"endTime": 0,
				"ended": false,
				"hasAuthen": 0,
				"id": 0,
				"isKo": 0,
				"isMiao": 0,
				"isNeedAuthen": 0,
				"isShiMing": 0,
				"limitNum": 0,
				"notStarted": false,
				"plusSeconds": 0,
				"plusType": 0,
				"remain": 0,
				"serverTime": 0,
				"state": 0
			},
			"abTest": {
				"addCart": {
					"PcABTest_29472": "tsabtest|base64|UGNBQlRlc3RfMjk0NzJ8cHJlMQ|tsabtest"
				}
			},
			"addedService": {
				"originFac": [{
					"linkDesc": "服务介绍",
					"linkUrl": "https:\/\/h5.m.jd.com\/babelDiy\/Zeus\/98cJbGL9L8WyJjNVEawku6rqxrU\/index.html",
					"subService": [{
						"iconText": "✌️唯一官方延保",
						"price": 159900,
						"sku": "100118888295",
						"text1": "2年无限碎屏电池",
						"text2": "唯一官方保修服务"
					},
					{
						"iconText": "⚡️唯一官方延保",
						"price": 89900,
						"sku": "100118888299",
						"text1": "1年无限碎屏电池",
						"text2": "唯一官方保修服务"
					}],
					"title": "AppleCare+",
					"typeId": "116"
				},
				{
					"linkDesc": "服务介绍",
					"linkUrl": "https:\/\/h5.m.jd.com\/babelDiy\/Zeus\/98cJbGL9L8WyJjNVEawku6rqxrU\/index.html",
					"subService": [{
						"iconText": "★原厂备件维修★",
						"price": 56900,
						"sku": "100092634249",
						"text1": "2年碎屏4年电池",
						"text2": "维修记录官网可查"
					},
					{
						"iconText": "",
						"price": 39900,
						"sku": "100112226749",
						"text1": "1年不限次维修",
						"text2": "意外故障,免费原厂授权维修"
					}],
					"title": "免费维修",
					"typeId": "567"
				},
				{
					"linkDesc": "服务介绍",
					"linkUrl": "https:\/\/h5.m.jd.com\/babelDiy\/Zeus\/98cJbGL9L8WyJjNVEawku6rqxrU\/index.html",
					"subService": [{
						"iconText": "意外损换直接新机",
						"price": 69900,
						"sku": "100132654106",
						"text1": "1年全保换新",
						"text2": "AC+付费维修vs我免费换新机"
					},
					{
						"iconText": "",
						"price": 119900,
						"sku": "100132654108",
						"text1": "2年全保换新",
						"text2": "性能故障和意外故障免费换新机"
					}],
					"title": "全保换新",
					"typeId": "514"
				},
				{
					"linkDesc": "服务介绍",
					"linkUrl": "https:\/\/h5.m.jd.com\/babelDiy\/Zeus\/98cJbGL9L8WyJjNVEawku6rqxrU\/index.html",
					"subService": [{
						"iconText": "",
						"price": 34900,
						"sku": "100037735111",
						"text1": "2年免费换新",
						"text2": "性能故障免费换新机"
					}],
					"title": "只换不修",
					"typeId": "209"
				},
				{
					"linkDesc": "服务介绍",
					"linkUrl": "https:\/\/h5.m.jd.com\/babelDiy\/Zeus\/98cJbGL9L8WyJjNVEawku6rqxrU\/index.html",
					"subService": [{
						"iconText": "☀续航无忧",
						"price": 7900,
						"sku": "100066652388",
						"text1": "2年电池换新",
						"text2": "0元换,维修记录官网可查"
					}],
					"title": "精选特惠",
					"typeId": "203"
				}],
				"originFacServiceType": "4",
				"tip": "本商品支持京选服务+,点击可选服务"
			},
			"buttonInfo": {
				"buttonType": 189,
				"cart": {
					"icon": "https:\/\/img12.360buyimg.com\/img\/s44x44_jfs\/t1\/95962\/27\/14706\/1377\/5e6846b2E73110aae\/19ef5a61187f0c66.png",
					"layerShow": false,
					"link": "\/pages\/cart\/cart\/cart?sourceType=wx-detail",
					"name": "购物车",
					"show": true
				},
				"main": {
					"action": "weakAddCart",
					"available": true,
					"bgColor": "linear-gradient(135deg, #FFBA0D 0%, #FFC30D 69%, #FFCF0D 100%)",
					"clickMod": "1",
					"icon": "https:\/\/img12.360buyimg.com\/img\/s40x40_jfs\/t1\/46656\/13\/23611\/2896\/64377596F0e6f4d0b\/67536576cc30c6c0.png",
					"name": "加入购物车",
					"show": true,
					"size": 0,
					"textColor": "#FFFFFF",
					"type": 1
				},
				"second": {
					"action": "buy",
					"available": true,
					"bgColor": "linear-gradient(135deg, #F2140C 0%, #F2270C 70%, #F24D0C 100%)",
					"clickMod": "1",
					"name": "立即购买",
					"show": true,
					"size": 0,
					"textColor": "#FFFFFF",
					"type": 1
				},
				"serviceChat": {
					"icon": "https:\/\/img12.360buyimg.com\/img\/s44x44_jfs\/t1\/99287\/18\/14776\/2024\/5e684302E1cbfc367\/7e9d625b8992603f.png",
					"layerShow": false,
					"link": "https:\/\/chat.jd.com\/chat\/index.action?entry=wx_item&pid=100118874253",
					"name": "客服",
					"show": true
				},
				"shopEntry": {
					"icon": "https:\/\/img12.360buyimg.com\/img\/s44x44_jfs\/t1\/144975\/21\/9209\/1115\/5f6d8b38E815acbf5\/a8c772c4de056707.png",
					"layerShow": false,
					"link": "\/pages\/shop\/index\/index?venderId=1000000127",
					"name": "店铺",
					"show": false,
					"type": 1
				},
				"tips": {
					"action": "",
					"content": "",
					"ext": [],
					"info": "",
					"link": "",
					"linkDesc": "",
					"mode": "",
					"show": false,
					"type": 0
				}
			},
			"colorSizeInfo": {
				"colorSize": [{
					"buttons": [{
						"no": "1",
						"skuList": ["100118874253", "100118874265", "100122443021", "100122477663", "100122477669", "100122477941", "100142621580", "100142621600", "100148031370", "100148031578", "100148031606", "100148031644"],
						"text": "沙漠色钛金属"
					},
					{
						"no": "2",
						"skuList": ["100118874255", "100122443041", "100122477841", "100122477955", "100122477973", "100142621606", "100142621622", "100142621642", "100148031178", "100148031602", "100148031610", "100148031624"],
						"text": "原色钛金属"
					},
					{
						"no": "3",
						"skuList": ["100118874239", "100118874241", "100122477837", "100122477913", "100122477965", "100142621602", "100142621626", "100147979216", "100148031196", "100148031612", "100148031640", "100148031668"],
						"text": "白色钛金属"
					},
					{
						"no": "4",
						"skuList": ["100118874257", "100118874263", "100118874267", "100122477703", "100122477723", "100122477957", "100122477967", "100142621624", "100148031222", "100148031480", "100148031494", "100148031636"],
						"text": "黑色钛金属"
					}],
					"title": "外观"
				},
				{
					"buttons": [{
						"no": "1",
						"skuList": ["100118874267", "100122443021", "100122443041", "100122477663", "100122477837", "100122477957", "100142621600", "100142621606", "100142621626", "100147979216", "100148031494", "100148031602"],
						"text": "128GB"
					},
					{
						"no": "2",
						"skuList": ["100118874239", "100122477669", "100122477965", "100122477967", "100142621580", "100142621624", "100142621642", "100148031222", "100148031606", "100148031610", "100148031624", "100148031668"],
						"text": "256GB"
					},
					{
						"no": "3",
						"skuList": ["100118874253", "100118874255", "100118874263", "100122477703", "100122477913", "100122477941", "100122477955", "100142621602", "100148031178", "100148031196", "100148031370", "100148031480"],
						"text": "512GB"
					},
					{
						"no": "4",
						"skuList": ["100118874241", "100118874257", "100118874265", "100122477723", "100122477841", "100122477973", "100142621622", "100148031578", "100148031612", "100148031636", "100148031640", "100148031644"],
						"text": "1TB"
					}],
					"title": "版本"
				},
				{
					"buttons": [{
						"no": "1",
						"skuList": ["100118874239", "100118874241", "100118874253", "100118874255", "100118874257", "100118874263", "100118874265", "100118874267", "100142621580", "100142621600", "100142621602", "100142621606", "100142621622", "100142621624", "100142621626", "100142621642"],
						"text": "公开版"
					},
					{
						"no": "2",
						"skuList": ["100122477663", "100122477669", "100122477723", "100122477837", "100122477941", "100122477957", "100122477965", "100122477973", "100148031178", "100148031196", "100148031222", "100148031480", "100148031578", "100148031602", "100148031610", "100148031640"],
						"text": "快充套装"
					},
					{
						"no": "4",
						"skuList": ["100122443021", "100122443041", "100122477703", "100122477841", "100122477913", "100122477955", "100122477967", "100147979216", "100148031370", "100148031494", "100148031606", "100148031612", "100148031624", "100148031636", "100148031644", "100148031668"],
						"text": "24期分期"
					}],
					"title": "购买方式"
				}],
				"colorSizeTips": "#与其他已选项无法组成可售商品,请重选",
				"spuInfoTitle": "更多系列",
				"spuInfos": []
			},
			"deviceInfo": {
				"deviceLevel": "0",
				"ext": [],
				"isLowM": false
			},
			"fastMail": {
				"jumpUrl": "https:\/\/help.jd.com\/user\/issue\/109-188.html",
				"mainTitle": "速递服务",
				"serviceList": [{
					"content": "最快明天达,京东快递|59元免基础运费",
					"deliveryMode": 2,
					"selected": 1
				},
				{
					"content": "最快今天 17:57达,同城速配|59元免基础运费",
					"deliveryMode": 1,
					"selected": 0
				}],
				"tipIcon": "https:\/\/img13.360buyimg.com\/img\/jfs\/t1\/188784\/10\/35997\/300\/64d0b281F851144ef\/c41c820b5383020d.png",
				"tipTitle": "服务介绍"
			},
			"jdInfo": {
				"fanxian": {
					"show": false
				},
				"jdBanner": {
					"ext": []
				},
				"limitText": "",
				"maxBuyNum": 200,
				"minBuyNum": 1
			},
			"navTabs": {
				"show": true,
				"tabs": [{
					"anchor": "fMainImage",
					"name": "商品",
					"type": "layer"
				},
				{
					"anchor": "fEvaluate",
					"name": "评价",
					"type": "layer"
				},
				{
					"anchor": "fDetails",
					"name": "详情",
					"type": "layer"
				}]
			},
			"pageShare": {
				"pageShareHit": false
			},
			"populationType": "201",
			"priceInfo": {
				"bgUrl": "",
				"dailyPrice": "",
				"discount": "",
				"iapPrice": "",
				"jdPrice": "10999",
				"linePrice": "",
				"linePriceDesc": "",
				"opPrice": "10999",
				"priceIcon": "",
				"priceMsg": "",
				"priceTitle": "",
				"priceType": "",
				"rangePrice": "",
				"subPrice": "",
				"titleIcon": ""
			},
			"priceLabel": "¥",
			"productComments": {
				"comments": [{
					"anonymousFlag": "1",
					"content": "京东购买的自营苹果 16 Pro 满意!手机外观精致,6.3 英寸屏幕大小刚刚好,握持舒适且视野开阔。A18 Pro 芯片性能强劲,运行各种软件和游戏都非常流畅。清晰又细腻。而且京东的价格实惠,物流也快,当天就发货,是一次非常愉快的购物体验!",
					"creationTime": "2024-10-06 22:31:49",
					"guid": "1e7fffde289b01537f4fa3ecbadd5c72",
					"id": "21519260030",
					"images": [{
						"id": "-1523639832",
						"imgUrl": "http:\/\/img30.360buyimg.com\/shaidan\/s128x96_jfs\/t1\/190237\/34\/47943\/376876\/67029f52F991f52a3\/e0ce8c1d4241ee66.jpg",
						"largeImgUrl": "http:\/\/img30.360buyimg.com\/shaidan\/s850x850_jfs\/t1\/190237\/34\/47943\/376876\/67029f52F991f52a3\/e0ce8c1d4241ee66.jpg"
					},
					{
						"id": "-1523639831",
						"imgUrl": "http:\/\/img30.360buyimg.com\/shaidan\/s128x96_jfs\/t1\/158342\/25\/44701\/459324\/67029f53Fbabb3250\/05f4a3a32be800cd.jpg",
						"largeImgUrl": "http:\/\/img30.360buyimg.com\/shaidan\/s850x850_jfs\/t1\/158342\/25\/44701\/459324\/67029f53Fbabb3250\/05f4a3a32be800cd.jpg"
					},
					{
						"id": "-1523639830",
						"imgUrl": "http:\/\/img30.360buyimg.com\/shaidan\/s128x96_jfs\/t1\/188334\/3\/48139\/3517633\/67029f54Fe1f152b2\/063313364a6be49c.jpg",
						"largeImgUrl": "http:\/\/img30.360buyimg.com\/shaidan\/s850x850_jfs\/t1\/188334\/3\/48139\/3517633\/67029f54Fe1f152b2\/063313364a6be49c.jpg"
					}],
					"nickname": "阿***1",
					"orderId": "0",
					"plusAvailable": "201",
					"productColor": "黑色钛金属",
					"productSize": "256GB",
					"replyCount": "96",
					"score": "5",
					"status": "1",
					"usefulVoteCount": "438",
					"userClient": "4",
					"userImageUrl": "https:\/\/storage.360buyimg.com\/i.imageUpload\/c5cbeac031343839353638333633363438_sma.jpg",
					"videos": []
				},
				{
					"anonymousFlag": "1",
					"content": "外形外观:超级洋气的沙漠金色,6.3寸屏比15pro明显大,视觉效果升级,边距变窄很多,女生手握感足够大了。\n拍照效果:新增快捷按键操作简单,拍照视频画面清晰。\n运行速度:运行丝滑流畅\n待机时间:待机续航明显提升",
					"creationTime": "2024-10-07 21:59:17",
					"guid": "68249d34b8c303a13af3690421e3db51",
					"id": "21523345510",
					"images": [{
						"id": "-1522337659",
						"imgUrl": "http:\/\/img30.360buyimg.com\/shaidan\/s128x96_jfs\/t1\/163723\/16\/47744\/374561\/6703e934F128d7df2\/86c1cecd48f69116.jpg",
						"largeImgUrl": "http:\/\/img30.360buyimg.com\/shaidan\/s850x850_jfs\/t1\/163723\/16\/47744\/374561\/6703e934F128d7df2\/86c1cecd48f69116.jpg"
					},
					{
						"id": "-1522337658",
						"imgUrl": "http:\/\/img30.360buyimg.com\/shaidan\/s128x96_jfs\/t1\/95405\/6\/51478\/391681\/6703e934F72e87555\/27ee43c81910d6a8.jpg",
						"largeImgUrl": "http:\/\/img30.360buyimg.com\/shaidan\/s850x850_jfs\/t1\/95405\/6\/51478\/391681\/6703e934F72e87555\/27ee43c81910d6a8.jpg"
					}],
					"nickname": "R***G",
					"orderId": "0",
					"plusAvailable": "201",
					"productColor": "白色钛金属",
					"productSize": "256GB",
					"replyCount": "43",
					"score": "5",
					"status": "1",
					"usefulVoteCount": "218",
					"userClient": "2",
					"userImageUrl": "https:\/\/storage.360buyimg.com\/i.imageUpload\/6a645f3634396639623765343732636531353234373232363935333938_sma.jpg",
					"videos": []
				},
				{
					"anonymousFlag": "1",
					"content": "该说不说的,苹果还是可以的。虽然每回升级都是那么一点点,但是它确实是好用啊😂特别是已经进了苹果生态,想再出来就太难了…\n钛金属边框摸起来真的舒服,好评好评好评!",
					"creationTime": "2024-10-07 22:29:09",
					"guid": "9cce9ebe50866d58552d879b442f2e5a",
					"id": "21523449231",
					"images": [{
						"id": "-1522298336",
						"imgUrl": "http:\/\/img30.360buyimg.com\/shaidan\/s128x96_jfs\/t1\/237876\/37\/27207\/188408\/6703f035F0e0287e2\/fd13430e51827ea0.jpg",
						"largeImgUrl": "http:\/\/img30.360buyimg.com\/shaidan\/s850x850_jfs\/t1\/237876\/37\/27207\/188408\/6703f035F0e0287e2\/fd13430e51827ea0.jpg"
					},
					{
						"id": "-1522298335",
						"imgUrl": "http:\/\/img30.360buyimg.com\/shaidan\/s128x96_jfs\/t1\/190274\/33\/48388\/166910\/6703f035F42a720b1\/6c5aaabb0eda5e5f.jpg",
						"largeImgUrl": "http:\/\/img30.360buyimg.com\/shaidan\/s850x850_jfs\/t1\/190274\/33\/48388\/166910\/6703f035F42a720b1\/6c5aaabb0eda5e5f.jpg"
					}],
					"nickname": "妖***J",
					"orderId": "0",
					"plusAvailable": "201",
					"productColor": "白色钛金属",
					"productSize": "256GB",
					"replyCount": "15",
					"score": "5",
					"status": "1",
					"usefulVoteCount": "131",
					"userClient": "2",
					"userImageUrl": "https:\/\/img11.360buyimg.com\/jdphoto\/s40x40_jfs\/t1\/25255\/18\/10701\/1678\/5c89f892E78c04688\/684d63c0d68e39b1.png",
					"videos": []
				}],
				"hotCommentTagStatistics": [{
					"canBeFiltered": true,
					"count": "170",
					"id": "439dae00d907aa92",
					"name": "性能一流",
					"rid": "439dae00d907aa92",
					"stand": "1",
					"type": "4"
				},
				{
					"canBeFiltered": true,
					"count": "167",
					"id": "2487c0f9e595f04d",
					"name": "手感一流",
					"rid": "2487c0f9e595f04d",
					"stand": "1",
					"type": "4"
				},
				{
					"canBeFiltered": true,
					"count": "147",
					"id": "88a3a45c74511b8c",
					"name": "颜色绚丽",
					"rid": "88a3a45c74511b8c",
					"stand": "1",
					"type": "4"
				},
				{
					"canBeFiltered": true,
					"count": "115",
					"id": "a2cc2478caba42fc",
					"name": "时尚美观",
					"rid": "a2cc2478caba42fc",
					"stand": "1",
					"type": "4"
				},
				{
					"canBeFiltered": true,
					"count": "85",
					"id": "5be02817b647aab8",
					"name": "时尚简约",
					"rid": "5be02817b647aab8",
					"stand": "1",
					"type": "4"
				},
				{
					"canBeFiltered": true,
					"count": "38",
					"id": "2d6d4e05d23fe3e3",
					"name": "品质优良",
					"rid": "2d6d4e05d23fe3e3",
					"stand": "1",
					"type": "4"
				},
				{
					"canBeFiltered": true,
					"count": "33",
					"id": "168ec8224f9ba51d",
					"name": "操作简便",
					"rid": "168ec8224f9ba51d",
					"stand": "1",
					"type": "4"
				},
				{
					"canBeFiltered": true,
					"count": "27",
					"id": "59a808b852c8f9ae",
					"name": "散热性佳",
					"rid": "59a808b852c8f9ae",
					"stand": "1",
					"type": "4"
				},
				{
					"canBeFiltered": true,
					"count": "3",
					"id": "5f96131c9c7c1d5c",
					"name": "畅快办公",
					"rid": "5f96131c9c7c1d5c",
					"stand": "1",
					"type": "4"
				},
				{
					"canBeFiltered": true,
					"count": "2",
					"id": "962e66f87fb6f7d9",
					"name": "解锁迅速",
					"rid": "962e66f87fb6f7d9",
					"stand": "1",
					"type": "4"
				},
				{
					"canBeFiltered": true,
					"count": "1",
					"id": "82524f1920d4f17d",
					"name": "清洁简便",
					"rid": "82524f1920d4f17d",
					"stand": "1",
					"type": "4"
				}],
				"productCommentSummary": {
					"CommentCount": 200000,
					"CommentCountStr": "20万+",
					"GoodCountStr": "3.2万+",
					"GoodRateShow": "95",
					"SkuId": "100118874253"
				}
			},
			"property": {
				"balanceWapAB": false,
				"centralDemotion": false,
				"hasCouponGuide": false,
				"isArrivalNoticeEnable": false,
				"isBipin": false,
				"isBusinessButie": false,
				"isButie": false,
				"isCallPositionApi": false,
				"isCannotSingleBuy": false,
				"isCannotTuanBuy": false,
				"isClassifiedMenuDisable": true,
				"isCommentAndAskFloorDemotion": false,
				"isCoordinateResponse": false,
				"isECard": false,
				"isEvaluationCannotResponse": false,
				"isFactorySupply": false,
				"isFanxian": false,
				"isGoShopDisable": true,
				"isGraphicSkuIdDisable": false,
				"isHasSuyuanFlag": false,
				"isHiBuy": false,
				"isJingxixc": false,
				"isJxyp": false,
				"isKoSmooth": true,
				"isLightCateringHit": false,
				"isLimitTuan": false,
				"isLiveRecShow": false,
				"isLocShopNewLinkEnable": false,
				"isLocShopNewStyle": false,
				"isLookMoreShopDisable": true,
				"isMicroRecommendationShow": false,
				"isPayLater": false,
				"isPingou": false,
				"isPingouShop": false,
				"isPlusZx": false,
				"isPlusZxShop": false,
				"isPrepositionWarehouse": false,
				"isRecLikeNoMore": true,
				"isRecommendTipShow": false,
				"isSearchMenuDisable": true,
				"isSingleColorSize": false,
				"isStoreOrderEnable": false,
				"isStoreShopDisable": true,
				"isTbBeautyHighlightHit": false,
				"isToShopDisable": true,
				"isWarmTipCompliance": false,
				"isWxVideoLive": false,
				"jdActiveType": 0,
				"jxxcYugaoType": 0,
				"locNoSelect": false,
				"locYyAc": false,
				"marketBenefitType": 0,
				"newAddedService": false,
				"oldVersion": "0",
				"pingouActiveType": 0,
				"presale": false,
				"prescriptNewEnable": false,
				"returnReferrerAppEnable": false,
				"shareShow": true,
				"showStudentGiftActivity": false,
				"soldOverseaFlag": true,
				"supplyCentralDemotion": false,
				"taroModeEnable": false,
				"unifiedForbidSwitch": false,
				"updateCookieWqAddrEnable": true,
				"yugaoType": 0
			},
			"recIds": {
				"guessLikeRecId": "10250",
				"noStockRecId": "10267",
				"seeingMoreRecId": "10262"
			},
			"shareInfo": {
				"friendShartIcon": "",
				"momentsShareTitle": "【预估¥10999以详情页为准】Apple iPhone 16 Pro 512GB",
				"shortTitle": "Apple iPhone 16 Pro 512GB"
			},
			"shopInfo": {
				"afsFactorScoreRankGrade": "",
				"afterSaleTxt": "",
				"afterServiceScore": "0.00",
				"commentFactorScoreRankGrade": "",
				"evaluateTxt": "",
				"favStatus": 0,
				"isJDSupermarket": false,
				"logisticsFactorScoreRankGrade": "",
				"logisticsLvyueScore": "0.00",
				"logisticsTxt": "",
				"shopEntryType": 0,
				"shopFansNum": "7469.6万",
				"shopFavType": 0,
				"shopGoodsNumber": "3404",
				"shopIcons": [{
					"height": 0,
					"iconType": "",
					"iconUrl": "https:\/\/img12.360buyimg.com\/img\/s49x28_jfs\/t1\/167871\/15\/11175\/1088\/60476324Ed412cf7e\/eff2f5c5fdd8e72e.png",
					"width": 0
				}],
				"shopId": 1000000127,
				"shopLogoUrl": "http:\/\/img30.360buyimg.com\/popshop\/jfs\/t1\/209877\/3\/25564\/7869\/62fdebabEdceae4a7\/0d757d8076b98466.jpg!q80.webp",
				"shopName": "Apple产品京东自营旗舰店",
				"shopUrl": "https:\/\/wq.jd.com\/shopv2\/wqpage?venderId=1000000127",
				"userEvaluateScore": "0.00",
				"venderId": 1000000127
			},
			"skuInfo": {
				"brandId": 14026,
				"brandName": "Apple",
				"category": ["9987", "653", "655"],
				"hasStock": true,
				"isPop": 0,
				"mainSkuId": 100142621580,
				"skuId": 100118874253,
				"skuMark": 65536,
				"skuName": "Apple\/苹果 iPhone 16 Pro(A3294)512GB 沙漠色钛金...",
				"skuStatus": 1,
				"skuType": 1,
				"spuId": 100118874253,
				"spuName": "Apple\/苹果 iPhone 16 Pro(A3294)512GB 沙漠色钛金属 支持移动联通电信5G 双卡双待手机",
				"stockState": 33,
				"upc": "195949770111",
				"venderColType": "0",
				"venderId": 1000000127,
				"yn": 1
			},
			"spattr": {
				"cjxp": "1",
				"companyType": "0",
				"fdms": 0,
				"features": {
					"cjxp": "1",
					"cxkfl": "1",
					"gjyslx": "2",
					"gypsshyzt": "102_1,103_2,104_2,105_2,106_1,109_2,110_2,111_2,112_2",
					"isrc": "1",
					"lvkx": "2",
					"mscsmqd": "1",
					"pbzffs": "1",
					"shortTitle": "Apple iPhone 16 Pro 512GB"
				},
				"fhdw": "2",
				"giftsGoods": "0",
				"is7ToReturn": "1",
				"isCanUseDQ": "1",
				"isCanUseJQ": "0",
				"isFzxp": "2",
				"isJIT": "0",
				"isLocalpurchase": "1",
				"isNewGoods": "1",
				"isOTCCat": "0",
				"isOverseaPurchase": "0",
				"isPrescriptCat": "0",
				"isSxqj": "1",
				"isWeChatStock": "15",
				"isdangergoods": "0",
				"jzfp": "0",
				"mspd": "0",
				"packType": "1",
				"platform": "2049",
				"productFeatures": [],
				"sendService": "0",
				"seriesId": "302890",
				"sfkc": "8AVJ8BE0A000",
				"soldOversea": "7",
				"stockOwner": "",
				"storeProperty": "0",
				"tax": "inputVAT:13,outputVAT:13,consumptionVAT:0",
				"thwa": "51",
				"tssp": 0,
				"venderBizId": "",
				"wjtyd": "1"
			},
			"userInfo": {
				"hasHistoryPrescript": "1",
				"isLogin": false,
				"isNewUser": 0,
				"isOfficialPin": true,
				"isPlus": false,
				"needAuth": false,
				"newerFlag": 0,
				"promoteLoginBar": false,
				"realNameAuthLink": "http:\/\/idt.jd.com\/realname-face?channelName=1636"
			},
			"wareImage": [{
				"big": "https:\/\/m.360buyimg.com\/mobilecms\/s800x800_jfs\/t1\/104357\/22\/55622\/31403\/67245654Fe4ee1220\/cf4ae64b45801f2e.png!q70.dpg.webp",
				"share": "https:\/\/m.360buyimg.com\/mobilecms\/s300x300_jfs\/t1\/104357\/22\/55622\/31403\/67245654Fe4ee1220\/cf4ae64b45801f2e.png!q70.jpg",
				"small": "https:\/\/m.360buyimg.com\/mobilecms\/s300x300_jfs\/t1\/104357\/22\/55622\/31403\/67245654Fe4ee1220\/cf4ae64b45801f2e.png!q70.dpg.webp"
			},
			{
				"big": "https:\/\/m.360buyimg.com\/mobilecms\/s800x800_jfs\/t1\/6165\/17\/35750\/11381\/66df7335Fef048d95\/91f1f61f8448031e.jpg!q70.dpg.webp",
				"small": "https:\/\/m.360buyimg.com\/mobilecms\/s300x300_jfs\/t1\/6165\/17\/35750\/11381\/66df7335Fef048d95\/91f1f61f8448031e.jpg!q70.dpg.webp"
			},
			{
				"big": "https:\/\/m.360buyimg.com\/mobilecms\/s800x800_jfs\/t1\/135094\/39\/43983\/34485\/66df7335Feb3ce1b0\/cee2a4aef26b1383.jpg!q70.dpg.webp",
				"small": "https:\/\/m.360buyimg.com\/mobilecms\/s300x300_jfs\/t1\/135094\/39\/43983\/34485\/66df7335Feb3ce1b0\/cee2a4aef26b1383.jpg!q70.dpg.webp"
			},
			{
				"big": "https:\/\/m.360buyimg.com\/mobilecms\/s800x800_jfs\/t1\/92101\/37\/44504\/14179\/66df7336Fe5a90de9\/8c02a0936d474df3.jpg!q70.dpg.webp",
				"small": "https:\/\/m.360buyimg.com\/mobilecms\/s300x300_jfs\/t1\/92101\/37\/44504\/14179\/66df7336Fe5a90de9\/8c02a0936d474df3.jpg!q70.dpg.webp"
			},
			{
				"big": "https:\/\/m.360buyimg.com\/mobilecms\/s800x800_jfs\/t1\/134032\/1\/46728\/28992\/66df7336Fca229cc9\/044579fb25df1f7f.jpg!q70.dpg.webp",
				"small": "https:\/\/m.360buyimg.com\/mobilecms\/s300x300_jfs\/t1\/134032\/1\/46728\/28992\/66df7336Fca229cc9\/044579fb25df1f7f.jpg!q70.dpg.webp"
			},
			{
				"big": "https:\/\/m.360buyimg.com\/mobilecms\/s800x800_jfs\/t1\/8356\/24\/26146\/54086\/66df7337F5a8b088e\/29f4368393c8419d.jpg!q70.dpg.webp",
				"small": "https:\/\/m.360buyimg.com\/mobilecms\/s300x300_jfs\/t1\/8356\/24\/26146\/54086\/66df7337F5a8b088e\/29f4368393c8419d.jpg!q70.dpg.webp"
			},
			{
				"big": "https:\/\/m.360buyimg.com\/mobilecms\/s800x800_jfs\/t1\/243901\/14\/16901\/91567\/66df7337Fbde944ef\/ddf2fb6e1a633a8b.jpg!q70.dpg.webp",
				"small": "https:\/\/m.360buyimg.com\/mobilecms\/s300x300_jfs\/t1\/243901\/14\/16901\/91567\/66df7337Fbde944ef\/ddf2fb6e1a633a8b.jpg!q70.dpg.webp"
			},
			{
				"big": "https:\/\/m.360buyimg.com\/mobilecms\/s800x800_jfs\/t1\/2619\/39\/24899\/23477\/66df7338Fd65fbf1c\/098fcc6fc34b8bcb.jpg!q70.dpg.webp",
				"small": "https:\/\/m.360buyimg.com\/mobilecms\/s300x300_jfs\/t1\/2619\/39\/24899\/23477\/66df7338Fd65fbf1c\/098fcc6fc34b8bcb.jpg!q70.dpg.webp"
			}],
			"wxapp": {
				"imgUrl": "https:\/\/img12.360buyimg.com\/img\/s420x76_jfs\/t1\/208670\/18\/6644\/7480\/61767d08Eaa4e1f97\/64013cb74c5b0dc4.png",
				"isPingou": false,
				"price2": "10999",
				"type": 0,
				"youhuiContext": "以详情页为准>"
			}
		},
		"sku_list": [{
			"cbf": 0,
			"id": "J_100148031178",
			"m": "11188.90",
			"op": "11099.00",
			"p": "11099.00"
		},
		{
			"cbf": 0,
			"id": "J_100118874255",
			"m": "11099.00",
			"op": "10999.00",
			"p": "10999.00"
		},
		{
			"cbf": 0,
			"id": "J_100148031610",
			"m": "9188.90",
			"op": "9099.00",
			"p": "9099.00"
		},
		{
			"cbf": 0,
			"id": "J_100118874253",
			"m": "11099.00",
			"op": "10999.00",
			"p": "10999.00"
		},
		{
			"cbf": 0,
			"id": "J_100142621580",
			"m": "9099.00",
			"op": "8999.00",
			"p": "8999.00"
		},
		{
			"cbf": 0,
			"id": "J_100148031578",
			"m": "13188.90",
			"op": "13099.00",
			"p": "13099.00"
		},
		{
			"cbf": 0,
			"id": "J_100122477669",
			"m": "9188.90",
			"op": "9099.00",
			"p": "9099.00"
		},
		{
			"cbf": 0,
			"id": "J_100148031370",
			"m": "11999.00",
			"op": "11899.00",
			"p": "11349.00"
		},
		{
			"cbf": 0,
			"id": "J_100122477965",
			"m": "9188.90",
			"op": "9099.00",
			"p": "9099.00"
		},
		{
			"cbf": 0,
			"id": "J_100118874239",
			"m": "9099.00",
			"op": "8999.00",
			"p": "8999.00"
		},
		{
			"cbf": 0,
			"id": "J_100122477941",
			"m": "11188.90",
			"op": "11099.00",
			"p": "11099.00"
		},
		{
			"cbf": 0,
			"id": "J_100142621600",
			"m": "8099.00",
			"op": "7999.00",
			"p": "7999.00"
		},
		{
			"cbf": 0,
			"id": "J_100142621622",
			"m": "13099.00",
			"op": "12999.00",
			"p": "12999.00"
		},
		{
			"cbf": 0,
			"id": "J_100122477841",
			"m": "14199.00",
			"op": "14099.00",
			"p": "13399.00"
		},
		{
			"cbf": 0,
			"id": "J_100142621642",
			"m": "9099.00",
			"op": "8999.00",
			"p": "8999.00"
		},
		{
			"cbf": 0,
			"id": "J_100122443041",
			"m": "8799.00",
			"op": "8699.00",
			"p": "8249.00"
		},
		{
			"cbf": 0,
			"id": "J_100122443021",
			"m": "8799.00",
			"op": "8699.00",
			"p": "8249.00"
		},
		{
			"cbf": 0,
			"id": "J_100118874265",
			"m": "13099.00",
			"op": "12999.00",
			"p": "12999.00"
		},
		{
			"cbf": 0,
			"id": "J_100148031644",
			"m": "14199.00",
			"op": "14099.00",
			"p": "13399.00"
		},
		{
			"cbf": 0,
			"id": "J_100148031602",
			"m": "8188.90",
			"op": "8099.00",
			"p": "8099.00"
		},
		{
			"cbf": 0,
			"id": "J_100148031624",
			"m": "9899.00",
			"op": "9799.00",
			"p": "9299.00"
		},
		{
			"cbf": 0,
			"id": "J_100118874241",
			"m": "13099.00",
			"op": "12999.00",
			"p": "12999.00"
		},
		{
			"cbf": 0,
			"id": "J_100122477837",
			"m": "8188.90",
			"op": "8099.00",
			"p": "8099.00"
		},
		{
			"cbf": 0,
			"id": "J_100122477913",
			"m": "11999.00",
			"op": "11899.00",
			"p": "11349.00"
		},
		{
			"cbf": 0,
			"id": "J_100122477955",
			"m": "11999.00",
			"op": "11899.00",
			"p": "11349.00"
		},
		{
			"cbf": 0,
			"id": "J_100122477973",
			"m": "13188.90",
			"op": "13099.00",
			"p": "13099.00"
		},
		{
			"cbf": 0,
			"id": "J_100122477663",
			"m": "8188.90",
			"op": "8099.00",
			"p": "8099.00"
		},
		{
			"cbf": 0,
			"id": "J_100142621602",
			"m": "11099.00",
			"op": "10999.00",
			"p": "10999.00"
		},
		{
			"cbf": 0,
			"id": "J_100142621606",
			"m": "8099.00",
			"op": "7999.00",
			"p": "7999.00"
		},
		{
			"cbf": 0,
			"id": "J_100148031606",
			"m": "9899.00",
			"op": "9799.00",
			"p": "9299.00"
		},
		{
			"cbf": 0,
			"id": "J_100118874257",
			"m": "13099.00",
			"op": "12999.00",
			"p": "12999.00"
		},
		{
			"cbf": 0,
			"id": "J_100148031612",
			"m": "14199.00",
			"op": "14099.00",
			"p": "13399.00"
		},
		{
			"cbf": 0,
			"id": "J_100148031636",
			"m": "14199.00",
			"op": "14099.00",
			"p": "13399.00"
		},
		{
			"cbf": 0,
			"id": "J_100122477703",
			"m": "11999.00",
			"op": "11899.00",
			"p": "11349.00"
		},
		{
			"cbf": 0,
			"id": "J_100122477967",
			"m": "9899.00",
			"op": "9799.00",
			"p": "9299.00"
		},
		{
			"cbf": 0,
			"id": "J_100122477723",
			"m": "13188.90",
			"op": "13099.00",
			"p": "13099.00"
		},
		{
			"cbf": 0,
			"id": "J_100148031494",
			"m": "8799.00",
			"op": "8699.00",
			"p": "8249.00"
		},
		{
			"cbf": 0,
			"id": "J_100148031196",
			"m": "11188.90",
			"op": "11099.00",
			"p": "11099.00"
		},
		{
			"cbf": 0,
			"id": "J_100142621600",
			"m": "8099.00",
			"op": "7999.00",
			"p": "7999.00"
		},
		{
			"cbf": 0,
			"id": "J_100122443041",
			"m": "8799.00",
			"op": "8699.00",
			"p": "8249.00"
		},
		{
			"cbf": 0,
			"id": "J_100122443021",
			"m": "8799.00",
			"op": "8699.00",
			"p": "8249.00"
		},
		{
			"cbf": 0,
			"id": "J_100148031640",
			"m": "13188.90",
			"op": "13099.00",
			"p": "13099.00"
		},
		{
			"cbf": 0,
			"id": "J_100148031222",
			"m": "9188.90",
			"op": "9099.00",
			"p": "9099.00"
		},
		{
			"cbf": 0,
			"id": "J_100118874267",
			"m": "8099.00",
			"op": "7999.00",
			"p": "7999.00"
		},
		{
			"cbf": 0,
			"id": "J_100147979216",
			"m": "8799.00",
			"op": "8699.00",
			"p": "8249.00"
		},
		{
			"cbf": 0,
			"id": "J_100148031668",
			"m": "9899.00",
			"op": "9799.00",
			"p": "9299.00"
		},
		{
			"cbf": 0,
			"id": "J_100118874263",
			"m": "11099.00",
			"op": "10999.00",
			"p": "10999.00"
		},
		{
			"cbf": 0,
			"id": "J_100122477837",
			"m": "8188.90",
			"op": "8099.00",
			"p": "8099.00"
		},
		{
			"cbf": 0,
			"id": "J_100148031602",
			"m": "8188.90",
			"op": "8099.00",
			"p": "8099.00"
		},
		{
			"cbf": 0,
			"id": "J_100122477957",
			"m": "8188.90",
			"op": "8099.00",
			"p": "8099.00"
		},
		{
			"cbf": 0,
			"id": "J_100148031480",
			"m": "11188.90",
			"op": "11099.00",
			"p": "11099.00"
		},
		{
			"cbf": 0,
			"id": "J_100122477663",
			"m": "8188.90",
			"op": "8099.00",
			"p": "8099.00"
		},
		{
			"cbf": 0,
			"id": "J_100142621626",
			"m": "8099.00",
			"op": "7999.00",
			"p": "7999.00"
		},
		{
			"cbf": 0,
			"id": "J_100142621624",
			"m": "9099.00",
			"op": "8999.00",
			"p": "8999.00"
		},
		{
			"cbf": 0,
			"id": "J_100142621606",
			"m": "8099.00",
			"op": "7999.00",
			"p": "7999.00"
		},
		{
			"cbf": 0,
			"id": "J_100118874257",
			"m": "13099.00",
			"op": "12999.00",
			"p": "12999.00"
		},
		{
			"cbf": 0,
			"id": "J_100148031178",
			"m": "11188.90",
			"op": "11099.00",
			"p": "11099.00"
		},
		{
			"cbf": 0,
			"id": "J_100148031610",
			"m": "9188.90",
			"op": "9099.00",
			"p": "9099.00"
		},
		{
			"cbf": 0,
			"id": "J_100118874255",
			"m": "11099.00",
			"op": "10999.00",
			"p": "10999.00"
		},
		{
			"cbf": 0,
			"id": "J_100142621580",
			"m": "9099.00",
			"op": "8999.00",
			"p": "8999.00"
		},
		{
			"cbf": 0,
			"id": "J_100118874253",
			"m": "11099.00",
			"op": "10999.00",
			"p": "10999.00"
		},
		{
			"cbf": 0,
			"id": "J_100122477967",
			"m": "9899.00",
			"op": "9799.00",
			"p": "9299.00"
		},
		{
			"cbf": 0,
			"id": "J_100122477703",
			"m": "11999.00",
			"op": "11899.00",
			"p": "11349.00"
		},
		{
			"cbf": 0,
			"id": "J_100122477669",
			"m": "9188.90",
			"op": "9099.00",
			"p": "9099.00"
		},
		{
			"cbf": 0,
			"id": "J_100122477965",
			"m": "9188.90",
			"op": "9099.00",
			"p": "9099.00"
		},
		{
			"cbf": 0,
			"id": "J_100148031370",
			"m": "11999.00",
			"op": "11899.00",
			"p": "11349.00"
		},
		{
			"cbf": 0,
			"id": "J_100122477723",
			"m": "13188.90",
			"op": "13099.00",
			"p": "13099.00"
		},
		{
			"cbf": 0,
			"id": "J_100118874239",
			"m": "9099.00",
			"op": "8999.00",
			"p": "8999.00"
		},
		{
			"cbf": 0,
			"id": "J_100122477941",
			"m": "11188.90",
			"op": "11099.00",
			"p": "11099.00"
		},
		{
			"cbf": 0,
			"id": "J_100148031196",
			"m": "11188.90",
			"op": "11099.00",
			"p": "11099.00"
		},
		{
			"cbf": 0,
			"id": "J_100122477841",
			"m": "14199.00",
			"op": "14099.00",
			"p": "13399.00"
		},
		{
			"cbf": 0,
			"id": "J_100142621642",
			"m": "9099.00",
			"op": "8999.00",
			"p": "8999.00"
		},
		{
			"cbf": 0,
			"id": "J_100148031222",
			"m": "9188.90",
			"op": "9099.00",
			"p": "9099.00"
		},
		{
			"cbf": 0,
			"id": "J_100118874265",
			"m": "13099.00",
			"op": "12999.00",
			"p": "12999.00"
		},
		{
			"cbf": 0,
			"id": "J_100148031624",
			"m": "9899.00",
			"op": "9799.00",
			"p": "9299.00"
		},
		{
			"cbf": 0,
			"id": "J_100148031668",
			"m": "9899.00",
			"op": "9799.00",
			"p": "9299.00"
		},
		{
			"cbf": 0,
			"id": "J_100118874263",
			"m": "11099.00",
			"op": "10999.00",
			"p": "10999.00"
		},
		{
			"cbf": 0,
			"id": "J_100118874241",
			"m": "13099.00",
			"op": "12999.00",
			"p": "12999.00"
		},
		{
			"cbf": 0,
			"id": "J_100122477913",
			"m": "11999.00",
			"op": "11899.00",
			"p": "11349.00"
		},
		{
			"cbf": 0,
			"id": "J_100122477955",
			"m": "11999.00",
			"op": "11899.00",
			"p": "11349.00"
		},
		{
			"cbf": 0,
			"id": "J_100148031480",
			"m": "11188.90",
			"op": "11099.00",
			"p": "11099.00"
		},
		{
			"cbf": 0,
			"id": "J_100122477973",
			"m": "13188.90",
			"op": "13099.00",
			"p": "13099.00"
		},
		{
			"cbf": 0,
			"id": "J_100142621624",
			"m": "9099.00",
			"op": "8999.00",
			"p": "8999.00"
		},
		{
			"cbf": 0,
			"id": "J_100142621602",
			"m": "11099.00",
			"op": "10999.00",
			"p": "10999.00"
		},
		{
			"cbf": 0,
			"id": "J_100148031606",
			"m": "9899.00",
			"op": "9799.00",
			"p": "9299.00"
		},
		{
			"cbf": 0,
			"id": "J_100118874257",
			"m": "13099.00",
			"op": "12999.00",
			"p": "12999.00"
		},
		{
			"cbf": 0,
			"id": "J_100118874255",
			"m": "11099.00",
			"op": "10999.00",
			"p": "10999.00"
		},
		{
			"cbf": 0,
			"id": "J_100148031612",
			"m": "14199.00",
			"op": "14099.00",
			"p": "13399.00"
		},
		{
			"cbf": 0,
			"id": "J_100118874253",
			"m": "11099.00",
			"op": "10999.00",
			"p": "10999.00"
		},
		{
			"cbf": 0,
			"id": "J_100142621580",
			"m": "9099.00",
			"op": "8999.00",
			"p": "8999.00"
		},
		{
			"cbf": 0,
			"id": "J_100148031578",
			"m": "13188.90",
			"op": "13099.00",
			"p": "13099.00"
		},
		{
			"cbf": 0,
			"id": "J_100148031636",
			"m": "14199.00",
			"op": "14099.00",
			"p": "13399.00"
		},
		{
			"cbf": 0,
			"id": "J_100122477669",
			"m": "9188.90",
			"op": "9099.00",
			"p": "9099.00"
		},
		{
			"cbf": 0,
			"id": "J_100122477723",
			"m": "13188.90",
			"op": "13099.00",
			"p": "13099.00"
		},
		{
			"cbf": 0,
			"id": "J_100122477965",
			"m": "9188.90",
			"op": "9099.00",
			"p": "9099.00"
		},
		{
			"cbf": 0,
			"id": "J_100118874239",
			"m": "9099.00",
			"op": "8999.00",
			"p": "8999.00"
		},
		{
			"cbf": 0,
			"id": "J_100142621622",
			"m": "13099.00",
			"op": "12999.00",
			"p": "12999.00"
		},
		{
			"cbf": 0,
			"id": "J_100142621600",
			"m": "8099.00",
			"op": "7999.00",
			"p": "7999.00"
		},
		{
			"cbf": 0,
			"id": "J_100122477941",
			"m": "11188.90",
			"op": "11099.00",
			"p": "11099.00"
		},
		{
			"cbf": 0,
			"id": "J_100142621642",
			"m": "9099.00",
			"op": "8999.00",
			"p": "8999.00"
		},
		{
			"cbf": 0,
			"id": "J_100148031640",
			"m": "13188.90",
			"op": "13099.00",
			"p": "13099.00"
		},
		{
			"cbf": 0,
			"id": "J_100118874267",
			"m": "8099.00",
			"op": "7999.00",
			"p": "7999.00"
		},
		{
			"cbf": 0,
			"id": "J_100148031644",
			"m": "14199.00",
			"op": "14099.00",
			"p": "13399.00"
		},
		{
			"cbf": 0,
			"id": "J_100118874265",
			"m": "13099.00",
			"op": "12999.00",
			"p": "12999.00"
		},
		{
			"cbf": 0,
			"id": "J_100118874241",
			"m": "13099.00",
			"op": "12999.00",
			"p": "12999.00"
		},
		{
			"cbf": 0,
			"id": "J_100118874263",
			"m": "11099.00",
			"op": "10999.00",
			"p": "10999.00"
		},
		{
			"cbf": 0,
			"id": "J_100122477837",
			"m": "8188.90",
			"op": "8099.00",
			"p": "8099.00"
		},
		{
			"cbf": 0,
			"id": "J_100122477957",
			"m": "8188.90",
			"op": "8099.00",
			"p": "8099.00"
		},
		{
			"cbf": 0,
			"id": "J_100122477973",
			"m": "13188.90",
			"op": "13099.00",
			"p": "13099.00"
		},
		{
			"cbf": 0,
			"id": "J_100122477663",
			"m": "8188.90",
			"op": "8099.00",
			"p": "8099.00"
		},
		{
			"cbf": 0,
			"id": "J_100142621626",
			"m": "8099.00",
			"op": "7999.00",
			"p": "7999.00"
		},
		{
			"cbf": 0,
			"id": "J_100142621602",
			"m": "11099.00",
			"op": "10999.00",
			"p": "10999.00"
		},
		{
			"cbf": 0,
			"id": "J_100142621624",
			"m": "9099.00",
			"op": "8999.00",
			"p": "8999.00"
		},
		{
			"cbf": 0,
			"id": "J_100142621606",
			"m": "8099.00",
			"op": "7999.00",
			"p": "7999.00"
		},
		{
			"cbf": 0,
			"id": "J_100148031178",
			"m": "11188.90",
			"op": "11099.00",
			"p": "11099.00"
		},
		{
			"cbf": 0,
			"id": "J_100148031222",
			"m": "9188.90",
			"op": "9099.00",
			"p": "9099.00"
		},
		{
			"cbf": 0,
			"id": "J_100148031640",
			"m": "13188.90",
			"op": "13099.00",
			"p": "13099.00"
		},
		{
			"cbf": 0,
			"id": "J_100148031610",
			"m": "9188.90",
			"op": "9099.00",
			"p": "9099.00"
		},
		{
			"cbf": 0,
			"id": "J_100148031612",
			"m": "14199.00",
			"op": "14099.00",
			"p": "13399.00"
		},
		{
			"cbf": 0,
			"id": "J_100148031578",
			"m": "13188.90",
			"op": "13099.00",
			"p": "13099.00"
		},
		{
			"cbf": 0,
			"id": "J_100147979216",
			"m": "8799.00",
			"op": "8699.00",
			"p": "8249.00"
		},
		{
			"cbf": 0,
			"id": "J_100148031644",
			"m": "14199.00",
			"op": "14099.00",
			"p": "13399.00"
		},
		{
			"cbf": 0,
			"id": "J_100148031636",
			"m": "14199.00",
			"op": "14099.00",
			"p": "13399.00"
		},
		{
			"cbf": 0,
			"id": "J_100148031602",
			"m": "8188.90",
			"op": "8099.00",
			"p": "8099.00"
		},
		{
			"cbf": 0,
			"id": "J_100148031624",
			"m": "9899.00",
			"op": "9799.00",
			"p": "9299.00"
		},
		{
			"cbf": 0,
			"id": "J_100148031668",
			"m": "9899.00",
			"op": "9799.00",
			"p": "9299.00"
		},
		{
			"cbf": 0,
			"id": "J_100122477913",
			"m": "11999.00",
			"op": "11899.00",
			"p": "11349.00"
		},
		{
			"cbf": 0,
			"id": "J_100122477703",
			"m": "11999.00",
			"op": "11899.00",
			"p": "11349.00"
		},
		{
			"cbf": 0,
			"id": "J_100122477967",
			"m": "9899.00",
			"op": "9799.00",
			"p": "9299.00"
		},
		{
			"cbf": 0,
			"id": "J_100122477955",
			"m": "11999.00",
			"op": "11899.00",
			"p": "11349.00"
		},
		{
			"cbf": 0,
			"id": "J_100148031480",
			"m": "11188.90",
			"op": "11099.00",
			"p": "11099.00"
		},
		{
			"cbf": 0,
			"id": "J_100148031370",
			"m": "11999.00",
			"op": "11899.00",
			"p": "11349.00"
		},
		{
			"cbf": 0,
			"id": "J_100148031494",
			"m": "8799.00",
			"op": "8699.00",
			"p": "8249.00"
		},
		{
			"cbf": 0,
			"id": "J_100148031196",
			"m": "11188.90",
			"op": "11099.00",
			"p": "11099.00"
		},
		{
			"cbf": 0,
			"id": "J_100122477841",
			"m": "14199.00",
			"op": "14099.00",
			"p": "13399.00"
		},
		{
			"cbf": 0,
			"id": "J_100122443041",
			"m": "8799.00",
			"op": "8699.00",
			"p": "8249.00"
		},
		{
			"cbf": 0,
			"id": "J_100148031606",
			"m": "9899.00",
			"op": "9799.00",
			"p": "9299.00"
		},
		{
			"cbf": 0,
			"id": "J_100122443021",
			"m": "8799.00",
			"op": "8699.00",
			"p": "8249.00"
		}],
		"video_raw": [{
			"fData": {
				"label": {
					"rightDown": []
				},
				"masterVideo": {
					"autoPlay": true,
					"coverUrl": "https:\/\/img10.360buyimg.com\/pop\/jfs\/t1\/137349\/36\/45832\/27315\/66e14578Fcad1e63d\/7e66a5d53a8c40a3.jpg",
					"duration": 45,
					"playUrl": "https:\/\/vod.300hu.com\/vod\/product\/1495891016\/21852\/1087_5000_1_90a8396e1_f.mp4?source=1&h265=1088_3000_1_55388f0a2_f.mp4",
					"show": true,
					"videoDuration": "00:45",
					"videoId": "1645185461"
				},
				"masterVideoAutostart": false,
				"newPlayButton": false,
				"newPlayVersion": true,
				"slide": {
					"imgUrl": "https:\/\/img14.360buyimg.com\/jdphoto\/jfs\/t1\/98857\/12\/8057\/9812\/5e01c54aE48c38f3a\/26de5c35a078720f.png",
					"releaseTip": "释放将跳转到图文详情",
					"slideTip": "继续查看图文详情",
					"toFloor": "fDetails"
				}
			},
			"fId": "fMainImage",
			"fPriority": "0",
			"fSortId": "1",
			"fStyle": {
				"bgc": "#F7F7F7",
				"height": "0"
			},
			"fType": "main_image"
		},
		{
			"fData": {
				"familyListState": false,
				"favorState": false,
				"showDrop": false,
				"showFamilyList": false,
				"showFav": false,
				"showShare": false
			},
			"fId": "fJdPrice",
			"fPriority": "1",
			"fSortId": "30",
			"fStyle": {
				"bgc": "#F7F7F7",
				"height": "0"
			},
			"fType": "ware_price"
		},
		{
			"fData": [],
			"fId": "fBaitiaoFfk",
			"fPriority": "0",
			"fSortId": "35",
			"fStyle": {
				"bgc": "#F7F7F7",
				"height": "0"
			},
			"fType": "baitiao_ffk"
		},
		{
			"fData": {
				"aboveWareName": [{
					"desc": "更好的新品在这里",
					"icon": "https:\/\/img12.360buyimg.com\/img\/s48x26_jfs\/t1\/145291\/12\/37894\/522\/6486d301Fe9d0ea49\/f04f65afdab2da07.png",
					"toUrl": ""
				}],
				"familyListState": false,
				"favorState": false,
				"imgToWareName": ["http:\/\/img12.360buyimg.com\/img\/s48x26_jfs\/t1\/134936\/19\/4552\/1458\/5f0fd238E688140ef\/dc3f7acfff4a1ee7.png"],
				"showFamilyList": false,
				"showFav": false,
				"showShare": false
			},
			"fId": "fName",
			"fPriority": "0",
			"fSortId": "70",
			"fStyle": {
				"bgc": "#F7F7F7",
				"height": "0"
			},
			"fType": "ware_name"
		},
		{
			"fData": {
				"adText": "【双11力度玩超大!】iPhone16Pro系列领券立减500元,以旧换新加补500元,还享12期限时白条免息!"
			},
			"fId": "fAd",
			"fPriority": "0",
			"fSortId": "90",
			"fStyle": {
				"bgc": "#F7F7F7",
				"height": "0"
			},
			"fType": "ware_ad"
		},
		{
			"fData": [],
			"fId": "fCentral",
			"fPriority": "0",
			"fSortId": "191",
			"fStyle": {
				"bgc": "#F7F7F7",
				"height": "0"
			},
			"fType": "central_platform"
		},
		{
			"fData": [],
			"fId": "fSelect",
			"fPriority": "0",
			"fSortId": "200",
			"fStyle": {
				"bgc": "#F7F7F7",
				"height": "15"
			},
			"fType": "ware_select"
		},
		{
			"fData": {
				"defaultAddr": {
					"addressId": "4551928385",
					"cityId": "72",
					"cityName": "朝阳区",
					"countyId": "2819",
					"countyName": "三环至四环之间",
					"default": false,
					"fullAddress": "北京市朝阳区三环至四环之间",
					"latitude": "39.9219",
					"locationId": "1_72_2819_0",
					"longitude": "116.444",
					"provinceId": "1",
					"provinceName": "北京市",
					"townId": "0",
					"townName": ""
				},
				"freight": {
					"tags": [{
						"image": "https:\/\/img12.360buyimg.com\/img\/s140x26_jfs\/t1\/128364\/22\/14770\/4290\/5f866980Ed74419a4\/f0af8ad84c0601bc.png",
						"type": "image",
						"width": "140"
					}],
					"weightValue": "0.363kg"
				},
				"serviceInfo": "23:59前下单,预计明天(11月06日)送达",
				"stockState": "现货"
			},
			"fId": "fAddress",
			"fPriority": "1",
			"fSortId": "210",
			"fStyle": {
				"bgc": "#F7F7F7",
				"height": "0"
			},
			"fType": "ware_address"
		},
		{
			"fData": {
				"basic": {
					"serviceList": [{
						"detail": "所选地址自营订单满59元免基础运费(20kg内),超出重量加收1元\/kg续重运费。",
						"iconType": "yes",
						"slogan": "59元免基础运费"
					},
					{
						"detail": "支持港澳台及海外收货地址下单,由于各地区政策不同,具体请以结算页详情为准",
						"iconType": "yes",
						"imageUrl": "https:\/\/m.360buyimg.com\/cc\/jfs\/t4984\/195\/1172610074\/2110\/e12abb06\/58ede3e4Nfc650507.png",
						"slogan": "可配送全球"
					},
					{
						"detail": "选择京准达服务,可指定精确时间点收货;若京东责任超时,即时赔付",
						"iconType": "yes",
						"slogan": "京准达"
					},
					{
						"detail": "上午下单,下午送达",
						"iconType": "yes",
						"slogan": "211限时达"
					},
					{
						"detail": "支持7天无理由退货(防伪签、密封条损毁不支持)",
						"iconType": "yes",
						"slogan": "7天无理由退货(防伪签、密封条损毁不支持)"
					},
					{
						"detail": "轻奢尊贵礼遇的高端派送服务",
						"iconType": "yes",
						"slogan": "京尊达"
					},
					{
						"detail": "京东物流为该商品提供预约送货服务",
						"iconType": "yes",
						"slogan": "预约送货"
					},
					{
						"detail": "如果收件人收货时发现部分货物存在缺少配件、物流损等情形,京东物流提供订单半收服务",
						"iconType": "yes",
						"slogan": "部分收货"
					},
					{
						"detail": "京东快递为您提供送货上门服务",
						"iconType": "yes",
						"slogan": "送货上门"
					},
					{
						"detail": "在下单或签收7天内,商品出现降价可享受价保服务(商品在消费者下单后因参与百亿补贴、政府补贴等活动导致降价不支持价保),可点击“>”了解详细规则",
						"extInfo": {
							"iShowType": true
						},
						"iconType": "yes",
						"slogan": "7天价保",
						"toUrl": "https:\/\/ihelp.jd.com\/n\/help\/tip\/getTipsFacade.json?tipId=174"
					},
					{
						"detail": "京东优质用户申请售后质量类问题,无需上传商品质检报告",
						"iconType": "yes",
						"slogan": "免举证退换货"
					}]
				},
				"layerName": "",
				"render": ""
			},
			"fId": "fJdService",
			"fPriority": "0",
			"fSortId": "230",
			"fStyle": {
				"bgc": "#F7F7F7",
				"height": "0"
			},
			"fType": "jd_service"
		},
		{
			"fData": [],
			"fId": "fOfflineStore",
			"fPriority": "0",
			"fSortId": "240",
			"fStyle": {
				"bgc": "#F7F7F7",
				"height": "15"
			},
			"fType": "offline_store"
		},
		{
			"fData": [],
			"fId": "fEvaluate",
			"fPriority": "0",
			"fSortId": "280",
			"fStyle": {
				"arrow": "https:\/\/storage.360buyimg.com\/static-common\/common_item\/short_arrow.png",
				"bgc": "#F7F7F7",
				"height": "15"
			},
			"fType": "ware_comment"
		},
		{
			"fData": {
				"askDatas": [{
					"answerCount": 3,
					"content": "pro跟pro Max更推荐哪一款呢?"
				},
				{
					"answerCount": 3,
					"content": "配了充电器嘛?"
				}],
				"link": "https:\/\/qa.m.jd.com\/faqs\/index.html?productId=100118874253",
				"num": 0
			},
			"fId": "fAsk",
			"fPriority": "0",
			"fSortId": "290",
			"fStyle": {
				"bgc": "#F7F7F7",
				"height": "0"
			},
			"fType": "ware_ask"
		},
		{
			"fData": {
				"buttonInfo": [{
					"ext": {
						"activeIcon": "https:\/\/img11.360buyimg.com\/img\/jfs\/t1\/161344\/31\/41652\/329\/65aa105dFe6cab701\/ea34bf1cbb06409a.png",
						"activeText": "已收藏"
					},
					"icon": "https:\/\/img14.360buyimg.com\/img\/jfs\/t1\/241457\/16\/3668\/333\/65aa105dFa1e7d9d4\/9cb1e6fbaf545a2f.png",
					"sortId": 0,
					"text": "收藏店铺",
					"type": 1
				},
				{
					"icon": "https:\/\/img20.360buyimg.com\/img\/jfs\/t1\/243497\/3\/3608\/316\/65aa1061Ff83e5d6a\/97928f4b23854cac.png",
					"link": "\/pages\/shopx\/pages\/index\/index?venderId=1000000127",
					"sortId": 0,
					"text": "进店逛逛",
					"type": 2
				}],
				"shopInfo": {
					"afsFactorScoreRankGrade": "",
					"afterSaleTxt": "",
					"afterServiceScore": "0.00",
					"commentFactorScoreRankGrade": "",
					"evaluateTxt": "",
					"favStatus": 0,
					"logisticsFactorScoreRankGrade": "",
					"logisticsLvyueScore": "0.00",
					"logisticsTxt": "",
					"name": "Apple产品京东自营旗舰店",
					"scoreInfo": [],
					"shopFansNum": "7469.6万",
					"shopGoodsNumber": "3404",
					"shopIcon": [{
						"height": 0,
						"iconType": "",
						"iconUrl": "https:\/\/img12.360buyimg.com\/img\/s49x28_jfs\/t1\/167871\/15\/11175\/1088\/60476324Ed412cf7e\/eff2f5c5fdd8e72e.png",
						"width": 0
					}],
					"shopId": 1000000127,
					"shopLogoUrl": "http:\/\/img30.360buyimg.com\/popshop\/jfs\/t1\/209877\/3\/25564\/7869\/62fdebabEdceae4a7\/0d757d8076b98466.jpg!q80.webp",
					"shopUrl": "https:\/\/wq.jd.com\/shopv2\/wqpage?venderId=1000000127",
					"userEvaluateScore": "0.00",
					"venderId": 1000000127,
					"venderType": 1
				},
				"styleType": 1,
				"trackType": 1
			},
			"fId": "fNewShop",
			"fPriority": "3",
			"fSortId": "300",
			"fStyle": {
				"bgc": "#F7F7F7",
				"height": "15"
			},
			"fType": "new_shop_info"
		},
		{
			"fData": {
				"entries": [{
					"clickRd": "7001.1.189",
					"enterIcon": "https:\/\/img14.360buyimg.com\/jdphoto\/jfs\/t14269\/206\/1377464630\/417\/1601d619\/5a4dd753N5a33ba54.png",
					"enterLink": "https:\/\/huishou.m.jd.com\/index?entryid=p0040003ahs",
					"enterText": "旧品回收,免费估价,极速到账",
					"enterTitle": "高价回收",
					"exposureRd": "7001.1.188",
					"type": "gaojiahuishou"
				}]
			},
			"fId": "fBusinessEntry",
			"fPriority": "0",
			"fSortId": "310",
			"fStyle": {
				"bgc": "#F7F7F7",
				"height": "15"
			},
			"fType": "bus_entry"
		},
		{
			"fData": [],
			"fId": "fAccessory",
			"fPriority": "1",
			"fSortId": "335",
			"fStyle": {
				"bgc": "#F7F7F7",
				"height": "15"
			},
			"fType": "accessory_floor"
		},
		{
			"fData": [],
			"fId": "fDetails",
			"fPriority": "0",
			"fSortId": "340",
			"fStyle": {
				"bgc": "#F7F7F7",
				"height": "15"
			},
			"fType": "ware_detail"
		}],
		"app_ver": "1.0.0-4.0 error:,format_file is error",
		"_ddf": "szx",
		"app_ver_check": "fail",
		"format_check": "ok"
	},
	"error": "",
	"secache": "4da788d8dadce146abb16f99b1a7b681",
	"secache_time": 1730796151,
	"secache_date": "2024-11-05 16:42:31",
	"reason": "",
	"error_code": "0000",
	"cache": 0,
	"api_info": "today: max:15000 all[=++];expires:2031-01-01",
	"execution_time": "9.696",
	"server_time": "Beijing\/2024-11-05 16:42:31",
	"client_ip": "127.0.0.1",
	"call_args": {
		"num_iid": "100118874253"
	},
	"api_type": "jd",
	"server_memory": "4.42MB",
	"last_id": false
}
异常示例
{
	"error": "item-not-found",
	"reason": "item-not-found 接口文档:https://open.fan-b.com/help/api/jd.item_get_app.html",
	"error_code": "2000",
	"api_info": "today:1 max:11000",
	"execution_time": "0.898",
	"server_time": "Beijing/2024-11-05 09:14:13",
	"client_ip": "106.6.32.222",
	"api_type": "jd",
	"translate_language": "zh-CN",
	"translate_engine": "google_new",
	"server_memory": "3.36MB",
	"request_id": "gw-1.62522f64332a5"}
相关资料
错误码解释
状态代码(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:271449542271449542(微信同号)