JMeter学习-009-JMeter 后置处理器实例之 - 正则表达式提取器(二)多参数获取

时间:2022-11-08 09:13:15

前文简述了通过后置处理器 - 正则表达式提取器 获取 HTTP请求 响应结果中的特定数据,未看过的亲,敬请参阅 JMeter学习-008-JMeter 后置处理器实例之 - 正则表达式提取器(一)

此文主要对正则表达式提取器的 正则表达式、模板、匹配数字,三者的关系,做进一步的讲解。

截取商品列表响应结果数据中的一段商品数据如下所示:

		{
"sysNo": "2142717",
"skuid": "487626525247",
"productID": "101-006-72958",
"productTitle": "苹果(Apple)iPhone 6 Plus (A1524) 16GB 金色 移动联通电信4G手机",
"price": "556600",
"activePrice": "",
"marketprice": "608800",
"promotionDesc": "A1524、A1586为三网通版,支持移动\/联通\/电信4G\/3G\/2G。找水货?找翻新?没有!易迅网为国行正品代言!!",
"manufacturerCode": "49",
"manufacturerName": "苹果(Apple)",
"evaluationNum": "1717",
"gradeNum": "48",
"onlineQty": "597",
"shippingday": "0t0",
"gift": 0,
"promotionType": "0",
"attribute": "20000000TD-SC(为保持美观,此行数据有所删除,不影响此文讲解,请知悉!)5.5寸三网通版",
"saleNum": "454",
"productTypeMasterid": "0",
"areaCode": "1",
"classid": "203320",
"tag": "超薄手机 大屏手机 待机时间长 高清屏 女神手机 拍照功能强 商务手机 外观漂亮 指纹识别 主流潮机",
"goodsUrl": "http:\/\/item.yixun.com\/item-2142717.html",
"picUrl": "http:\/\/img3.wgimg.com\/qqbuy\/2295220799\/item-00000000000000000000007188CE4A3F.0.jpg\/200?55DAE367",
"reachable": "0"
},

参照上述商品信息数据,假定我们需要获取的是商品的系统编号、商品价格,那么我们改如何写呢?对应上述信息获取商品系统编号、商品销售价格,最终的正则表达式如下所示:

单独获取商品系统编号:

JMeter学习-009-JMeter 后置处理器实例之 - 正则表达式提取器(二)多参数获取

单独获取商品销售价格:

JMeter学习-009-JMeter 后置处理器实例之 - 正则表达式提取器(二)多参数获取

执行结果如下所示:

price=556600
price_g=1
price_g0="price":"556600","
price_g1=556600
sysNo=2142717
sysNo_g=1
sysNo_g0="sysNo":"2142717","
sysNo_g1=2142717

 

在前文的讲述中,正则表达式提取器的模板是匹配正则表达式提取式的控制模板。例如:模板 $1$ 中的数字 1 代表取第一个正则提取式的内容,当为0时,为整个正则表达式完整匹配项。那么我们就可以通过模板控制我们选取的提取式,以获取相应的内容,进行相应的后续操作。通过模板控制,单独获取商品系统编号、销售价格的正则表达式提取配置如下所示:

混合单取商品系统编号:

JMeter学习-009-JMeter 后置处理器实例之 - 正则表达式提取器(二)多参数获取

混合单取商品销售价格:

JMeter学习-009-JMeter 后置处理器实例之 - 正则表达式提取器(二)多参数获取

执行结果如下所示:

single_price=556600
single_price_g=2
single_price_g0=sysNo":"2142717","skuid":"487626525247","productID":"101-006-72958","productTitle":"苹果(Apple)iPhone 6 Plus (A1524) 16GB 金色 移动联通电信4G手机","price":"556600","
single_price_g1=2142717
single_price_g2=556600
single_sysNo=2142717
single_sysNo_g=2
single_sysNo_g0=sysNo":"2142717","skuid":"487626525247","productID":"101-006-72958","productTitle":"苹果(Apple)iPhone 6 Plus (A1524) 16GB 金色 移动联通电信4G手机","price":"556600","
single_sysNo_g1=2142717
single_sysNo_g2=556600

 

经过上述的讲解及演示,细心的小主可能已经发现了,在提取相关联的数据时,通过单独提取的方式非常的不方便,而且在数量多的时候,难免出现配置数据不对应的情况,造成所取的关联数据并非关联数据。那么针对此种情况,我们改如何处理呢?通过 上篇文章 及本文前面的讲解,我们知道,既然可以通过模板控制提取内容的选取,那是否可将相关联的需提取的内容同时在一个正则表达式提取器中完成呢?答案是可以的,仅需在引用名称、模板、匹配数字、缺省值 进行相应的配置即可,同时以英文半角字符 “,” 分隔即可。下面就以同时获取系统编号和销售价格为例进行演示:

正则提取器配置如下所示:

JMeter学习-009-JMeter 后置处理器实例之 - 正则表达式提取器(二)多参数获取

执行结果如下所示:

goodInfo=2142711,558800
goodInfo_g=2
goodInfo_g0=sysNo":"2142711","skuid":"487626066110","productID":"101-006-69384","productTitle":"苹果(Apple)iPhone 6 Plus (A1524) 16GB 深空灰色 移动联通电信4G手机","price":"558800","
goodInfo_g1=2142711
goodInfo_g2=558800

 

附录(1)- JMeter测试脚本:

JMeter学习-009-JMeter 后置处理器实例之 - 正则表达式提取器(二)多参数获取JMeter学习-009-JMeter 后置处理器实例之 - 正则表达式提取器(二)多参数获取
  1 <?xml version="1.0" encoding="UTF-8"?>
2 <jmeterTestPlan version="1.2" properties="2.7" jmeter="2.12 r1636949">
3 <hashTree>
4 <TestPlan guiclass="TestPlanGui" testclass="TestPlan" testname="接口自动化测试用例 - 非登录态" enabled="true">
5 <stringProp name="TestPlan.comments"></stringProp>
6 <boolProp name="TestPlan.functional_mode">false</boolProp>
7 <boolProp name="TestPlan.serialize_threadgroups">false</boolProp>
8 <elementProp name="TestPlan.user_defined_variables" elementType="Arguments" guiclass="ArgumentsPanel" testclass="Arguments" testname="用户定义的变量" enabled="true">
9 <collectionProp name="Arguments.arguments"/>
10 </elementProp>
11 <stringProp name="TestPlan.user_define_classpath"></stringProp>
12 </TestPlan>
13 <hashTree>
14 <ThreadGroup guiclass="ThreadGroupGui" testclass="ThreadGroup" testname="001-类目搜索验证" enabled="true">
15 <stringProp name="ThreadGroup.on_sample_error">continue</stringProp>
16 <elementProp name="ThreadGroup.main_controller" elementType="LoopController" guiclass="LoopControlPanel" testclass="LoopController" testname="循环控制器" enabled="true">
17 <boolProp name="LoopController.continue_forever">false</boolProp>
18 <stringProp name="LoopController.loops">1</stringProp>
19 </elementProp>
20 <stringProp name="ThreadGroup.num_threads">1</stringProp>
21 <stringProp name="ThreadGroup.ramp_time">1</stringProp>
22 <longProp name="ThreadGroup.start_time">1419564228000</longProp>
23 <longProp name="ThreadGroup.end_time">1419564228000</longProp>
24 <boolProp name="ThreadGroup.scheduler">false</boolProp>
25 <stringProp name="ThreadGroup.duration"></stringProp>
26 <stringProp name="ThreadGroup.delay"></stringProp>
27 </ThreadGroup>
28 <hashTree>
29 <HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="手机数码-手机通讯-苹果" enabled="true">
30 <elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" enabled="true">
31 <collectionProp name="Arguments.arguments">
32 <elementProp name="districtId" elementType="HTTPArgument">
33 <boolProp name="HTTPArgument.always_encode">false</boolProp>
34 <stringProp name="Argument.name">districtId</stringProp>
35 <stringProp name="Argument.value">29357</stringProp>
36 <stringProp name="Argument.metadata">=</stringProp>
37 <boolProp name="HTTPArgument.use_equals">true</boolProp>
38 </elementProp>
39 <elementProp name="exAppTag" elementType="HTTPArgument">
40 <boolProp name="HTTPArgument.always_encode">false</boolProp>
41 <stringProp name="Argument.name">exAppTag</stringProp>
42 <stringProp name="Argument.value">2045191607</stringProp>
43 <stringProp name="Argument.metadata">=</stringProp>
44 <boolProp name="HTTPArgument.use_equals">true</boolProp>
45 </elementProp>
46 </collectionProp>
47 </elementProp>
48 <stringProp name="HTTPSampler.domain">mb.51buy.com</stringProp>
49 <stringProp name="HTTPSampler.port"></stringProp>
50 <stringProp name="HTTPSampler.connect_timeout"></stringProp>
51 <stringProp name="HTTPSampler.response_timeout"></stringProp>
52 <stringProp name="HTTPSampler.protocol">http</stringProp>
53 <stringProp name="HTTPSampler.contentEncoding">GB2312</stringProp>
54 <stringProp name="HTTPSampler.path">/json.php?mod=Search&amp;act=page&amp;p=1&amp;path=706188t706189&amp;districtId=29357&amp;areacode=1&amp;dtype=list%7Cpage%7Cclasses&amp;appSource=android&amp;appVersion=45</stringProp>
55 <stringProp name="HTTPSampler.method">POST</stringProp>
56 <boolProp name="HTTPSampler.follow_redirects">true</boolProp>
57 <boolProp name="HTTPSampler.auto_redirects">false</boolProp>
58 <boolProp name="HTTPSampler.use_keepalive">true</boolProp>
59 <boolProp name="HTTPSampler.DO_MULTIPART_POST">false</boolProp>
60 <boolProp name="HTTPSampler.monitor">false</boolProp>
61 <stringProp name="HTTPSampler.embedded_url_re"></stringProp>
62 </HTTPSamplerProxy>
63 <hashTree>
64 <HeaderManager guiclass="HeaderPanel" testclass="HeaderManager" testname="HTTP信息头管理器" enabled="true">
65 <collectionProp name="HeaderManager.headers">
66 <elementProp name="Charset" elementType="Header">
67 <stringProp name="Header.name">Charset</stringProp>
68 <stringProp name="Header.value">UTF-8</stringProp>
69 </elementProp>
70 <elementProp name="Content-Type" elementType="Header">
71 <stringProp name="Header.name">Content-Type</stringProp>
72 <stringProp name="Header.value">application/x-www-form-urlencoded</stringProp>
73 </elementProp>
74 <elementProp name="Accept-Encoding" elementType="Header">
75 <stringProp name="Header.name">Accept-Encoding</stringProp>
76 <stringProp name="Header.value">gzip</stringProp>
77 </elementProp>
78 <elementProp name="User-Agent" elementType="Header">
79 <stringProp name="Header.name">User-Agent</stringProp>
80 <stringProp name="Header.value">Dalvik/1.6.0 (Linux; U; Android 4.4.2; GT-I9502 Build/KOT49H)</stringProp>
81 </elementProp>
82 </collectionProp>
83 </HeaderManager>
84 <hashTree/>
85 <ResponseAssertion guiclass="AssertionGui" testclass="ResponseAssertion" testname="01 - 判断类目搜索结果状态码" enabled="true">
86 <collectionProp name="Asserion.test_strings">
87 <stringProp name="71131476">&quot;errno&quot;:0</stringProp>
88 </collectionProp>
89 <stringProp name="Assertion.test_field">Assertion.response_data</stringProp>
90 <boolProp name="Assertion.assume_success">false</boolProp>
91 <intProp name="Assertion.test_type">2</intProp>
92 </ResponseAssertion>
93 <hashTree/>
94 <RegexExtractor guiclass="RegexExtractorGui" testclass="RegexExtractor" testname="正则表达式提取器 - 获取商品列表中商品的系统编号" enabled="true">
95 <stringProp name="RegexExtractor.useHeaders">false</stringProp>
96 <stringProp name="RegexExtractor.refname">sysNo</stringProp>
97 <stringProp name="RegexExtractor.regex">&quot;sysNo&quot;:&quot;(.+?)&quot;,&quot;</stringProp>
98 <stringProp name="RegexExtractor.template">$1$</stringProp>
99 <stringProp name="RegexExtractor.default">ERROR</stringProp>
100 <stringProp name="RegexExtractor.match_number">2</stringProp>
101 </RegexExtractor>
102 <hashTree/>
103 <RegexExtractor guiclass="RegexExtractorGui" testclass="RegexExtractor" testname="正则表达式提取器 - 获取商品列表中商品的销售价格" enabled="true">
104 <stringProp name="RegexExtractor.useHeaders">false</stringProp>
105 <stringProp name="RegexExtractor.refname">price</stringProp>
106 <stringProp name="RegexExtractor.regex">&quot;price&quot;:&quot;(.+?)&quot;,&quot;</stringProp>
107 <stringProp name="RegexExtractor.template">$1$</stringProp>
108 <stringProp name="RegexExtractor.default">ERROR</stringProp>
109 <stringProp name="RegexExtractor.match_number">2</stringProp>
110 </RegexExtractor>
111 <hashTree/>
112 <RegexExtractor guiclass="RegexExtractorGui" testclass="RegexExtractor" testname="正则表达式提取器 - 多匹配项处理之一 - 获取单个匹配项" enabled="true">
113 <stringProp name="RegexExtractor.useHeaders">false</stringProp>
114 <stringProp name="RegexExtractor.refname">single_sysNo</stringProp>
115 <stringProp name="RegexExtractor.regex">sysNo&quot;:&quot;([0-9]{2,8}).+?price&quot;:&quot;(.+?)&quot;,&quot;</stringProp>
116 <stringProp name="RegexExtractor.template">$1$</stringProp>
117 <stringProp name="RegexExtractor.default">ERROR</stringProp>
118 <stringProp name="RegexExtractor.match_number">2</stringProp>
119 </RegexExtractor>
120 <hashTree/>
121 <RegexExtractor guiclass="RegexExtractorGui" testclass="RegexExtractor" testname="正则表达式提取器 - 多匹配项处理之二 - 获取单个匹配项" enabled="true">
122 <stringProp name="RegexExtractor.useHeaders">false</stringProp>
123 <stringProp name="RegexExtractor.refname">single_price</stringProp>
124 <stringProp name="RegexExtractor.regex">sysNo&quot;:&quot;([0-9]{2,8}).+?price&quot;:&quot;(.+?)&quot;,&quot;</stringProp>
125 <stringProp name="RegexExtractor.template">$2$</stringProp>
126 <stringProp name="RegexExtractor.default">ERROR</stringProp>
127 <stringProp name="RegexExtractor.match_number">2</stringProp>
128 </RegexExtractor>
129 <hashTree/>
130 <RegexExtractor guiclass="RegexExtractorGui" testclass="RegexExtractor" testname="正则表达式提取器 - 多匹配项处理之三 - 获取多个匹配项" enabled="true">
131 <stringProp name="RegexExtractor.useHeaders">false</stringProp>
132 <stringProp name="RegexExtractor.refname">multi_sysNo,multi_price</stringProp>
133 <stringProp name="RegexExtractor.regex">sysNo&quot;:&quot;([0-9]{2,8}).+?price&quot;:&quot;(.+?)&quot;,&quot;</stringProp>
134 <stringProp name="RegexExtractor.template">$1$,$2$</stringProp>
135 <stringProp name="RegexExtractor.default">ERROR,ERROR</stringProp>
136 <stringProp name="RegexExtractor.match_number">3,3</stringProp>
137 </RegexExtractor>
138 <hashTree/>
139 <DebugPostProcessor guiclass="TestBeanGUI" testclass="DebugPostProcessor" testname="DPP -- 所属 :HTTP请求" enabled="true">
140 <boolProp name="displayJMeterProperties">false</boolProp>
141 <boolProp name="displayJMeterVariables">true</boolProp>
142 <boolProp name="displaySamplerProperties">true</boolProp>
143 <boolProp name="displaySystemProperties">false</boolProp>
144 </DebugPostProcessor>
145 <hashTree/>
146 </hashTree>
147 </hashTree>
148 <ResultCollector guiclass="ViewResultsFullVisualizer" testclass="ResultCollector" testname="察看结果树" enabled="true">
149 <boolProp name="ResultCollector.error_logging">false</boolProp>
150 <objProp>
151 <name>saveConfig</name>
152 <value class="SampleSaveConfiguration">
153 <time>true</time>
154 <latency>true</latency>
155 <timestamp>true</timestamp>
156 <success>true</success>
157 <label>true</label>
158 <code>true</code>
159 <message>true</message>
160 <threadName>true</threadName>
161 <dataType>true</dataType>
162 <encoding>false</encoding>
163 <assertions>true</assertions>
164 <subresults>true</subresults>
165 <responseData>false</responseData>
166 <samplerData>false</samplerData>
167 <xml>false</xml>
168 <fieldNames>false</fieldNames>
169 <responseHeaders>false</responseHeaders>
170 <requestHeaders>false</requestHeaders>
171 <responseDataOnError>false</responseDataOnError>
172 <saveAssertionResultsFailureMessage>false</saveAssertionResultsFailureMessage>
173 <assertionsResultsToSave>0</assertionsResultsToSave>
174 <bytes>true</bytes>
175 <threadCounts>true</threadCounts>
176 </value>
177 </objProp>
178 <stringProp name="filename"></stringProp>
179 </ResultCollector>
180 <hashTree/>
181 </hashTree>
182 </hashTree>
183 </jmeterTestPlan>
JMeter - 后置处理器/正则表达式提取器 实例脚本

附录(2)- HTTP请求响应结果:

JMeter学习-009-JMeter 后置处理器实例之 - 正则表达式提取器(二)多参数获取JMeter学习-009-JMeter 后置处理器实例之 - 正则表达式提取器(二)多参数获取
  1 {
2 "errno": 0,
3 "data": {
4 "classes": [{
5 "id": "706189",
6 "className": "iphone",
7 "pid": "706188",
8 "level": "2",
9 "count": "44",
10 "order": "99999997"
11 },
12 {
13 "id": "5008892",
14 "className": "iphone6 plus",
15 "pid": "706189",
16 "level": "3",
17 "count": "16",
18 "order": "99999998"
19 },
20 {
21 "id": "5008891",
22 "className": "iphone6",
23 "pid": "706189",
24 "level": "3",
25 "count": "16",
26 "order": "99999997"
27 },
28 {
29 "id": "707928",
30 "className": "iphone5s",
31 "pid": "706189",
32 "level": "3",
33 "count": "9",
34 "order": "99999996"
35 },
36 {
37 "id": "707931",
38 "className": "iphone4\/4s",
39 "pid": "706189",
40 "level": "3",
41 "count": "2",
42 "order": "99999993"
43 }],
44 "list": [{
45 "sysNo": "1903913",
46 "skuid": "472108827742",
47 "productID": "101-005-31058",
48 "productTitle": "苹果(Apple) iPhone 5s (A1530) 16GB 金色 移动联通4G手机",
49 "price": "345500",
50 "activePrice": "",
51 "marketprice": "489800",
52 "promotionDesc": "",
53 "manufacturerCode": "49",
54 "manufacturerName": "苹果(Apple)",
55 "evaluationNum": "14809",
56 "gradeNum": "45",
57 "onlineQty": "626",
58 "shippingday": "0t0",
59 "gift": 0,
60 "promotionType": "2",
61 "attribute": "2000000000e1903913;2000000000e1903913;1e6;6e1;7e6;10e7;10e9;10e10;10e12;10e18;10e19;10e21;55e2644;12303e19;15981e1;36044e6;36045e10;36048e17;39033e2;39034e2;39715eiPhone 5s;39929e3;41635e1;42355e10;42617e25;42617e27;42617e30;42617e31;42839e5;43353e2;49e9?金色;42914?制式版本e3?公开版;43246?内存e1?16G",
62 "saleNum": "153",
63 "productTypeMasterid": "0",
64 "areaCode": "1",
65 "classid": "203320",
66 "tag": "超薄手机 女神手机 拍照功能强 适合儿童 适合老人 外观漂亮 性价比之王 指纹识别 主流潮机",
67 "goodsUrl": "http:\/\/item.yixun.com\/item-1903913.html",
68 "picUrl": "http:\/\/img2.wgimg.com\/qqbuy\/3957392478\/item-00000000000000000000006DEBE1045E.0.jpg\/200?55D6C4F4",
69 "reachable": "0"
70 },
71 {
72 "sysNo": "2142717",
73 "skuid": "487626525247",
74 "productID": "101-006-72958",
75 "productTitle": "苹果(Apple)iPhone 6 Plus (A1524) 16GB 金色 移动联通电信4G手机",
76 "price": "556600",
77 "activePrice": "",
78 "marketprice": "608800",
79 "promotionDesc": "A1524、A1586为三网通版,支持移动\/联通\/电信4G\/3G\/2G。找水货?找翻新?没有!易迅网为国行正品代言!!",
80 "manufacturerCode": "49",
81 "manufacturerName": "苹果(Apple)",
82 "evaluationNum": "1717",
83 "gradeNum": "48",
84 "onlineQty": "597",
85 "shippingday": "0t0",
86 "gift": 0,
87 "promotionType": "0",
88 "attribute": "2000000000e2142717;2000000000e2142717;1e6;2e1;6e1;7e6;10e7;10e9;10e10;10e20;10e32;10e34;10e35;10e47;55e2644;12303e38;12484e12;15980e1;15981e1;36044e6;36045e10;36048e15;39033e7;39034e2;39074e12;39715eiPhone 6 Plus;39929e28;41635e1;41745e1;41749e3;42355e10;42617e25;42617e26;42617e27;42617e29;42617e30;42617e31;42617e32;42617e33;42839e7;43001e158.1*77.8*7.1(mm);43169e配备 64 位架构的 A8 芯片,M8 运动协处理器;43175eTrue Tone 闪光灯;43257eFDD-LTE\/TD-LTE\/WCDMA\/TD-SCDMA\/CDMA2000\/GSM\/CDMA;43258e移动4G(TD-LTE)\/联通4G(FDD-LTE)\/电信4G(FDD-LTE);移动3G(TD-SCDMA)\/联通3G(WCDMA)\/电信3G(CDMA2000);移动2G\/联通2G(GSM)\/电信2G(CDMA);43261e不支持;43353e2;49e9?金色;42914?内存e1?16G;43246?制式e4?5.5寸三网通版",
89 "saleNum": "454",
90 "productTypeMasterid": "0",
91 "areaCode": "1",
92 "classid": "203320",
93 "tag": "超薄手机 大屏手机 待机时间长 高清屏 女神手机 拍照功能强 商务手机 外观漂亮 指纹识别 主流潮机",
94 "goodsUrl": "http:\/\/item.yixun.com\/item-2142717.html",
95 "picUrl": "http:\/\/img3.wgimg.com\/qqbuy\/2295220799\/item-00000000000000000000007188CE4A3F.0.jpg\/200?55DAE367",
96 "reachable": "0"
97 },
98 {
99 "sysNo": "1903850",
100 "skuid": "472104764317",
101 "productID": "101-005-28773",
102 "productTitle": "苹果(Apple) iPhone 4s 8GB 白色 联通3G手机",
103 "price": "148800",
104 "activePrice": "",
105 "marketprice": "238800",
106 "promotionDesc": "iPhone中的经典,值得拥有!支持联通3G、移动\/联通2G!找水货?找翻新?没有!易迅网为国行正品代言!!手机客户端下单优惠10元,随时涨价!",
107 "manufacturerCode": "49",
108 "manufacturerName": "苹果(Apple)",
109 "evaluationNum": "49929",
110 "gradeNum": "45",
111 "onlineQty": "4117",
112 "shippingday": "0t0",
113 "gift": 0,
114 "promotionType": "2",
115 "attribute": "2000000000e1903850;2000000000e1903850;1e6;6e1;7e6;10e5;10e7;10e9;10e10;10e12;10e18;10e20;55e2644;12303e3;15981e1;36044e4;36045e9;36048e1;39033e2;39034e2;39715eiPhone 4S;39929e5;41635e1;42355e2;42617e30;42617e31;42839e2;43353e2;49e1?白色;43246?版本e2?联通",
116 "saleNum": "4",
117 "productTypeMasterid": "0",
118 "areaCode": "1",
119 "classid": "203320",
120 "tag": "适合儿童 适合老人 外观漂亮 性价比之王",
121 "goodsUrl": "http:\/\/item.yixun.com\/item-1903850.html",
122 "picUrl": "http:\/\/img1.wgimg.com\/qqbuy\/3953329053\/item-00000000000000000000006DEBA3039D.0.jpg\/200?55D6C4F4",
123 "reachable": "0"
124 },
125 {
126 "sysNo": "2142686",
127 "skuid": "487624492343",
128 "productID": "101-006-72944",
129 "productTitle": "苹果(Apple)iPhone 6 (A1586) 16GB 金色 移动联通电信4G手机",
130 "price": "476600",
131 "activePrice": "",
132 "marketprice": "528800",
133 "promotionDesc": "A1524、A1586为三网通版,支持移动\/联通\/电信4G\/3G\/2G。找水货?找翻新?没有!易迅网为国行正品代言!!",
134 "manufacturerCode": "49",
135 "manufacturerName": "苹果(Apple)",
136 "evaluationNum": "1937",
137 "gradeNum": "48",
138 "onlineQty": "3",
139 "shippingday": "0t0",
140 "gift": 0,
141 "promotionType": "0",
142 "attribute": "2000000000e2142686;2000000000e2142686;1e6;2e1;6e1;7e6;10e7;10e9;10e10;10e20;10e32;10e34;10e35;10e47;55e2644;12303e33;12484e12;15980e1;15981e1;36044e6;36045e10;36048e39;39033e7;39034e2;39074e12;39715eiPhone 6;39929e28;41635e1;41745e1;41749e3;42355e10;42617e25;42617e26;42617e27;42617e29;42617e30;42617e31;42617e32;42617e33;42839e6;43001e138.1*67.0*6.9(mm);43169e配备 64 位架构的 A8 芯片,M8 运动协处理器;43175eTrue Tone 闪光灯;43257eFDD-LTE\/TD-LTE\/WCDMA\/TD-SCDMA\/CDMA2000\/GSM\/CDMA;43258e移动4G(TD-LTE)\/联通4G(FDD-LTE)\/电信4G(FDD-LTE);移动3G(TD-SCDMA)\/联通3G(WCDMA)\/电信3G(CDMA2000);移动2G\/联通2G(GSM)\/电信2G(CDMA);43261e不支持;43353e2;49e9?金色;42914?内存e1?16G;43246?制式e3?4.7寸三网通版",
143 "saleNum": "174",
144 "productTypeMasterid": "0",
145 "areaCode": "1",
146 "classid": "203320",
147 "tag": "超薄手机 女神手机 拍照功能强 商务手机 外观漂亮 指纹识别 主流潮机",
148 "goodsUrl": "http:\/\/item.yixun.com\/item-2142686.html",
149 "picUrl": "http:\/\/img3.wgimg.com\/qqbuy\/2293187895\/item-00000000000000000000007188AF4537.0.jpg\/200?55D6C4B8",
150 "reachable": "0"
151 },
152 {
153 "sysNo": "1903919",
154 "skuid": "472109220972",
155 "productID": "101-005-28791",
156 "productTitle": "苹果(Apple) iPhone 5s (A1518) 16GB 银色 移动4G手机",
157 "price": "338800",
158 "activePrice": "",
159 "marketprice": "497800",
160 "promotionDesc": "移动用户请认准移动版5S!找水货?找翻新?没有!易迅网为国行正品代言!!",
161 "manufacturerCode": "49",
162 "manufacturerName": "苹果(Apple)",
163 "evaluationNum": "6135",
164 "gradeNum": "44",
165 "onlineQty": "0",
166 "shippingday": "0t0",
167 "gift": 0,
168 "promotionType": "5",
169 "attribute": "2000000000e1903919;2000000000e1903919;1e6;6e1;7e6;10e5;10e7;10e9;10e10;10e12;10e18;10e19;10e20;10e21;55e2644;12303e19;15981e1;36044e6;36045e10;36048e17;39033e2;39034e2;39715eiPhone 5s A1518;39929e3;41635e1;42355e10;42617e25;42617e27;42617e31;42839e5;43353e2;49e14?银色;42914?制式版本e4?移动;43246?内存e1?16G",
170 "saleNum": "10",
171 "productTypeMasterid": "0",
172 "areaCode": "1",
173 "classid": "203320",
174 "tag": "超薄手机 女神手机 拍照功能强 适合儿童 适合老人 外观漂亮 性价比之王 指纹识别 主流潮机",
175 "goodsUrl": "http:\/\/item.yixun.com\/item-1903919.html",
176 "picUrl": "http:\/\/img0.wgimg.com\/qqbuy\/3957785708\/item-00000000000000000000006DEBE7046C.0.jpg\/200?55D6B75B",
177 "reachable": "0"
178 },
179 {
180 "sysNo": "1903920",
181 "skuid": "472109352049",
182 "productID": "101-005-31061",
183 "productTitle": "苹果(Apple) iPhone 5s (A1530) 16GB 银色 移动联通4G手机",
184 "price": "348800",
185 "activePrice": "",
186 "marketprice": "499800",
187 "promotionDesc": "兼容移动\/联通网络iPhone5s(A1530),畅享4G\/3G高速网络!找水货?找翻新?没有!易迅网为国行正品代言!!",
188 "manufacturerCode": "49",
189 "manufacturerName": "苹果(Apple)",
190 "evaluationNum": "4104",
191 "gradeNum": "44",
192 "onlineQty": "1",
193 "shippingday": "0t0",
194 "gift": 0,
195 "promotionType": "0",
196 "attribute": "2000000000e1903920;2000000000e1903920;1e6;6e1;7e6;10e5;10e7;10e9;10e10;10e12;10e18;10e20;10e21;55e2644;12303e19;15981e1;36044e6;36045e10;36048e17;39033e2;39034e2;39715eiPhone 5s;39929e20;41635e1;42355e10;42617e25;42617e27;42617e30;42617e31;42839e5;43353e2;49e14?银色;42914?制式版本e3?公开版;43246?内存e1?16G",
197 "saleNum": "20",
198 "productTypeMasterid": "0",
199 "areaCode": "1",
200 "classid": "203320",
201 "tag": "超薄手机 女神手机 拍照功能强 适合儿童 适合老人 外观漂亮 性价比之王 指纹识别 主流潮机",
202 "goodsUrl": "http:\/\/item.yixun.com\/item-1903920.html",
203 "picUrl": "http:\/\/img1.wgimg.com\/qqbuy\/3957916785\/item-00000000000000000000006DEBE90471.0.jpg\/200?55D6B75E",
204 "reachable": "0"
205 },
206 {
207 "sysNo": "1903854",
208 "skuid": "472105026475",
209 "productID": "101-005-31039",
210 "productTitle": "苹果(Apple) iPhone 4s 8GB 黑色 联通3G手机",
211 "price": "148800",
212 "activePrice": "",
213 "marketprice": "238800",
214 "promotionDesc": "iPhone中的经典,值得拥有!支持联通3G、移动\/联通2G!找水货?找翻新?没有!易迅网为国行正品代言!!",
215 "manufacturerCode": "49",
216 "manufacturerName": "苹果(Apple)",
217 "evaluationNum": "23728",
218 "gradeNum": "45",
219 "onlineQty": "4564",
220 "shippingday": "0t0",
221 "gift": 0,
222 "promotionType": "2",
223 "attribute": "2000000000e1903854;2000000000e1903854;1e6;6e1;7e6;10e5;10e7;10e9;10e10;10e12;10e18;10e20;55e2644;12303e3;15981e1;36044e4;36045e9;36048e1;39033e2;39034e2;39715eiPhone 4S;39929e6;41635e1;42355e2;42617e30;42617e31;42839e2;43353e2;49e13?黑色;43246?版本e2?联通",
224 "saleNum": "3",
225 "productTypeMasterid": "0",
226 "areaCode": "1",
227 "classid": "203320",
228 "tag": "适合儿童 适合老人 外观漂亮 性价比之王",
229 "goodsUrl": "http:\/\/item.yixun.com\/item-1903854.html",
230 "picUrl": "http:\/\/img3.wgimg.com\/qqbuy\/3953591211\/item-00000000000000000000006DEBA703AB.0.jpg\/200?55D6B6E2",
231 "reachable": "0"
232 },
233 {
234 "sysNo": "2142801",
235 "skuid": "487631182410",
236 "productID": "101-006-72985",
237 "productTitle": "苹果(Apple)iPhone 6 Plus (A1524) 64GB 金色 移动联通电信4G手机",
238 "price": "638800",
239 "activePrice": "",
240 "marketprice": "708800",
241 "promotionDesc": "A1524、A1586为三网通版,支持移动\/联通\/电信4G\/3G\/2G。货源稀缺,关注页面,有货别抖,点到才有!找水货?没有!易迅网为国行正品代言!!",
242 "manufacturerCode": "49",
243 "manufacturerName": "苹果(Apple)",
244 "evaluationNum": "812",
245 "gradeNum": "48",
246 "onlineQty": "631",
247 "shippingday": "0t0",
248 "gift": 0,
249 "promotionType": "2",
250 "attribute": "2000000000e2142801;2000000000e2142801;1e6;2e1;6e1;7e6;10e7;10e9;10e10;10e20;10e32;10e34;10e35;55e2644;12303e38;12484e12;15980e1;15981e1;36044e6;36045e12;36048e15;39033e7;39034e2;39074e12;39715eiPhone 6 Plus;39929e28;41635e1;41745e1;41749e3;42355e10;42617e25;42617e26;42617e27;42617e29;42617e30;42617e31;42617e32;42617e33;42839e7;43001e158.1*77.8*7.1(mm);43169e配备 64 位架构的 A8 芯片,M8 运动协处理器;43175eTrue Tone 闪光灯;43257eFDD-LTE\/TD-LTE\/WCDMA\/TD-SCDMA\/CDMA2000\/GSM\/CDMA;43258e移动4G(TD-LTE)\/联通4G(FDD-LTE)\/电信4G(FDD-LTE);移动3G(TD-SCDMA)\/联通3G(WCDMA)\/电信3G(CDMA2000);移动2G\/联通2G(GSM)\/电信2G(CDMA);43261e不支持;43353e2;49e9?金色;42914?内存e2?64G;43246?制式e4?5.5寸三网通版",
251 "saleNum": "90",
252 "productTypeMasterid": "0",
253 "areaCode": "1",
254 "classid": "203320",
255 "tag": "超薄手机 大屏手机 待机时间长 高清屏 女神手机 拍照功能强 商务手机 外观漂亮 指纹识别 主流潮机",
256 "goodsUrl": "http:\/\/item.yixun.com\/item-2142801.html",
257 "picUrl": "http:\/\/img2.wgimg.com\/qqbuy\/2299877962\/item-00000000000000000000007189155A4A.0.jpg\/200?55D6B724",
258 "reachable": "0"
259 },
260 {
261 "sysNo": "2142783",
262 "skuid": "487657083230",
263 "productID": "101-006-72979",
264 "productTitle": "苹果(Apple)iPhone 6 (A1586) 16GB 银色 移动联通电信4G手机",
265 "price": "478800",
266 "activePrice": "",
267 "marketprice": "528800",
268 "promotionDesc": "A1524、A1586为三网通版,支持移动\/联通\/电信4G\/3G\/2G。找水货?找翻新?没有!易迅网为国行正品代言!!",
269 "manufacturerCode": "49",
270 "manufacturerName": "苹果(Apple)",
271 "evaluationNum": "814",
272 "gradeNum": "48",
273 "onlineQty": "464",
274 "shippingday": "0t0",
275 "gift": 0,
276 "promotionType": "0",
277 "attribute": "2000000000e2142783;2000000000e2142783;1e6;2e1;6e1;7e6;10e7;10e9;10e10;10e20;10e32;10e34;10e35;10e47;55e2644;12303e33;12484e12;15981e1;36044e6;36045e10;36048e39;39033e7;39034e2;39074e12;39715eiPhone 6;39929e20;41635e1;41745e1;41749e3;42355e10;42617e25;42617e26;42617e27;42617e29;42617e30;42617e31;42617e32;42617e33;42839e6;43001e138.1*67.0*6.9(mm);43169e配备 64 位架构的 A8 芯片,M8 运动协处理器;43175eTrue Tone 闪光灯;43257eFDD-LTE\/TD-LTE\/WCDMA\/TD-SCDMA\/CDMA2000\/GSM\/CDMA;43258e移动4G(TD-LTE)\/联通4G(FDD-LTE)\/电信4G(FDD-LTE);移动3G(TD-SCDMA)\/联通3G(WCDMA)\/电信3G(CDMA2000);移动2G\/联通2G(GSM)\/电信2G(CDMA);43261e不支持;43353e2;49e14?银色;42914?内存e1?16G;43246?制式e3?4.7寸三网通版",
278 "saleNum": "63",
279 "productTypeMasterid": "0",
280 "areaCode": "1",
281 "classid": "203320",
282 "tag": "超薄手机 女神手机 拍照功能强 商务手机 外观漂亮 指纹识别 主流潮机",
283 "goodsUrl": "http:\/\/item.yixun.com\/item-2142783.html",
284 "picUrl": "http:\/\/img2.wgimg.com\/qqbuy\/2325778782\/item-0000000000000000000000718AA0915E.0.jpg\/200?55D6B761",
285 "reachable": "0"
286 },
287 {
288 "sysNo": "2142687",
289 "skuid": "487624557923",
290 "productID": "101-006-72945",
291 "productTitle": "苹果(Apple)iPhone 6 (A1586) 64GB 金色 移动联通电信4G手机",
292 "price": "547700",
293 "activePrice": "",
294 "marketprice": "608800",
295 "promotionDesc": "A1524、A1586为三网通版,支持移动\/联通\/电信4G\/3G\/2G。找水货?找翻新?没有!易迅网为国行正品代言!",
296 "manufacturerCode": "49",
297 "manufacturerName": "苹果(Apple)",
298 "evaluationNum": "685",
299 "gradeNum": "48",
300 "onlineQty": "830",
301 "shippingday": "0t0",
302 "gift": 0,
303 "promotionType": "5",
304 "attribute": "2000000000e2142687;2000000000e2142687;1e6;2e1;6e1;7e6;10e7;10e9;10e10;10e20;10e32;10e34;10e35;10e47;55e2644;12303e33;12484e12;15980e1;15981e1;36044e6;36045e12;36048e39;39033e7;39034e2;39074e12;39715eiPhone 6;39929e28;41635e1;41745e1;41749e3;42355e10;42617e25;42617e26;42617e27;42617e29;42617e30;42617e31;42617e32;42617e33;42839e6;43001e138.1*67.0*6.9(mm);43169e配备 64 位架构的 A8 芯片,M8 运动协处理器;43175eTrue Tone 闪光灯;43257eFDD-LTE\/TD-LTE\/WCDMA\/TD-SCDMA\/CDMA2000\/GSM\/CDMA;43258e移动4G(TD-LTE)\/联通4G(FDD-LTE)\/电信4G(FDD-LTE);移动3G(TD-SCDMA)\/联通3G(WCDMA)\/电信3G(CDMA2000);移动2G\/联通2G(GSM)\/电信2G(CDMA);43261e不支持;43353e2;49e9?金色;42914?内存e2?64G;43246?制式e3?4.7寸三网通版",
305 "saleNum": "95",
306 "productTypeMasterid": "0",
307 "areaCode": "1",
308 "classid": "203320",
309 "tag": "超薄手机 女神手机 拍照功能强 商务手机 外观漂亮 指纹识别 主流潮机",
310 "goodsUrl": "http:\/\/item.yixun.com\/item-2142687.html",
311 "picUrl": "http:\/\/img3.wgimg.com\/qqbuy\/2293253475\/item-00000000000000000000007188B04563.0.jpg\/200?55D6B760",
312 "reachable": "0"
313 },
314 {
315 "sysNo": "1903917",
316 "skuid": "472109155431",
317 "productID": "101-005-31060",
318 "productTitle": "苹果(Apple) iPhone 5s (A1530) 16GB 深空灰色 移动联通4G手机",
319 "price": "348800",
320 "activePrice": "",
321 "marketprice": "499800",
322 "promotionDesc": "兼容移动\/联通网络iPhone5s(A1530),畅享4G\/3G高速网络!找水货?找翻新?没有!易迅网为国行正品代言!!",
323 "manufacturerCode": "49",
324 "manufacturerName": "苹果(Apple)",
325 "evaluationNum": "1806",
326 "gradeNum": "45",
327 "onlineQty": "54",
328 "shippingday": "0t0",
329 "gift": 0,
330 "promotionType": "0",
331 "attribute": "2000000000e1903917;2000000000e1903917;1e6;6e1;7e6;10e5;10e7;10e9;10e10;10e12;10e18;10e19;10e21;55e2644;12303e19;15981e1;36044e6;36045e10;36048e17;39033e2;39034e2;39074e6;39715eiPhone 5s;39929e11;41635e1;42355e10;42617e25;42617e27;42617e30;42617e31;42839e5;43353e2;49e15?深空灰色;42914?制式版本e3?公开版;43246?内存e1?16G",
332 "saleNum": "25",
333 "productTypeMasterid": "0",
334 "areaCode": "1",
335 "classid": "203320",
336 "tag": "超薄手机 女神手机 拍照功能强 适合儿童 适合老人 外观漂亮 性价比之王 指纹识别 主流潮机",
337 "goodsUrl": "http:\/\/item.yixun.com\/item-1903917.html",
338 "picUrl": "http:\/\/img3.wgimg.com\/qqbuy\/3957720167\/item-00000000000000000000006DEBE60467.0.jpg\/200?55D6B75D",
339 "reachable": "0"
340 },
341 {
342 "sysNo": "2142780",
343 "skuid": "487630132886",
344 "productID": "101-006-69424",
345 "productTitle": "苹果(Apple)iPhone 6 (A1586) 64GB 银色 移动联通电信4G手机",
346 "price": "558800",
347 "activePrice": "",
348 "marketprice": "608800",
349 "promotionDesc": "A1524、A1586为三网通版,支持移动\/联通\/电信4G\/3G\/2G。找水货?找翻新?没有!易迅网为国行正品代言!!",
350 "manufacturerCode": "49",
351 "manufacturerName": "苹果(Apple)",
352 "evaluationNum": "348",
353 "gradeNum": "47",
354 "onlineQty": "0",
355 "shippingday": "0t0",
356 "gift": 0,
357 "promotionType": "5",
358 "attribute": "2000000000e2142780;2000000000e2142780;1e6;2e1;6e1;7e6;10e7;10e9;10e10;10e20;10e32;10e34;10e35;10e47;55e2644;12303e33;12484e12;15980e1;15981e1;36044e6;36045e12;36048e39;39033e7;39034e2;39074e12;39715eiPhone 6;39929e20;41635e1;41745e1;41749e3;42355e10;42617e25;42617e26;42617e27;42617e29;42617e30;42617e31;42617e32;42617e33;42839e6;43001e138.1*67.0*6.9(mm);43169e配备 64 位架构的 A8 芯片,M8 运动协处理器;43175eTrue Tone 闪光灯;43257eFDD-LTE\/TD-LTE\/WCDMA\/TD-SCDMA\/CDMA2000\/GSM\/CDMA;43258e移动4G(TD-LTE)\/联通4G(FDD-LTE)\/电信4G(FDD-LTE);移动3G(TD-SCDMA)\/联通3G(WCDMA)\/电信3G(CDMA2000);移动2G\/联通2G(GSM)\/电信2G(CDMA);43261e不支持;43353e2;49e14?银色;42914?内存e2?64G;43246?制式e3?4.7寸三网通版",
359 "saleNum": "19",
360 "productTypeMasterid": "0",
361 "areaCode": "1",
362 "classid": "203320",
363 "tag": "超薄手机 女神手机 拍照功能强 商务手机 外观漂亮 指纹识别 主流潮机",
364 "goodsUrl": "http:\/\/item.yixun.com\/item-2142780.html",
365 "picUrl": "http:\/\/img2.wgimg.com\/qqbuy\/2298828438\/item-00000000000000000000007189055696.0.jpg\/200?55D6B760",
366 "reachable": "0"
367 },
368 {
369 "sysNo": "2142676",
370 "skuid": "487623967611",
371 "productID": "101-006-72940",
372 "productTitle": "苹果(Apple)iPhone 6 Plus (A1524) 64GB 银色 移动联通电信4G手机",
373 "price": "638800",
374 "activePrice": "",
375 "marketprice": "688800",
376 "promotionDesc": "A1524、A1586为三网通版,支持移动\/联通\/电信4G\/3G\/2G。找水货?找翻新?没有!易迅网为国行正品代言!!",
377 "manufacturerCode": "49",
378 "manufacturerName": "苹果(Apple)",
379 "evaluationNum": "277",
380 "gradeNum": "48",
381 "onlineQty": "157",
382 "shippingday": "0t0",
383 "gift": 0,
384 "promotionType": "0",
385 "attribute": "2000000000e2142676;2000000000e2142676;1e6;2e1;6e1;7e6;10e7;10e9;10e10;10e20;10e32;10e34;10e35;10e47;55e2644;12303e38;12484e12;15980e1;15981e1;36044e6;36045e12;36048e15;39033e7;39034e2;39074e12;39715eiPhone 6 Plus;39929e20;41635e1;41745e1;41749e3;42355e10;42617e25;42617e26;42617e27;42617e29;42617e30;42617e31;42617e32;42839e7;43001e158.1*77.8*7.1(mm);43169e配备 64 位架构的 A8 芯片,M8 运动协处理器;43175eTrue Tone 闪光灯;43257eFDD-LTE\/TD-LTE\/WCDMA\/TD-SCDMA\/CDMA2000\/GSM\/CDMA;43258e移动4G(TD-LTE)\/联通4G(FDD-LTE)\/电信4G(FDD-LTE);移动3G(TD-SCDMA)\/联通3G(WCDMA)\/电信3G(CDMA2000);移动2G\/联通2G(GSM)\/电信2G(CDMA);43261e不支持;43353e2;49e14?银色;42914?内存e2?64G;43246?制式e4?5.5寸三网通版",
386 "saleNum": "14",
387 "productTypeMasterid": "0",
388 "areaCode": "1",
389 "classid": "203320",
390 "tag": "超薄手机 大屏手机 待机时间长 高清屏 女神手机 拍照功能强 商务手机 外观漂亮 指纹识别 主流潮机",
391 "goodsUrl": "http:\/\/item.yixun.com\/item-2142676.html",
392 "picUrl": "http:\/\/img3.wgimg.com\/qqbuy\/2292663163\/item-00000000000000000000007188A7437B.0.jpg\/200?55D6B720",
393 "reachable": "0"
394 },
395 {
396 "sysNo": "2142748",
397 "skuid": "487628493210",
398 "productID": "101-006-69404",
399 "productTitle": "苹果(Apple)iPhone 6 (A1586) 64GB 深空灰色 移动联通电信4G手机",
400 "price": "558800",
401 "activePrice": "",
402 "marketprice": "608800",
403 "promotionDesc": "A1524、A1586为三网通版,支持移动\/联通\/电信4G\/3G\/2G。找水货?找翻新?没有!易迅网为国行正品代言!!",
404 "manufacturerCode": "49",
405 "manufacturerName": "苹果(Apple)",
406 "evaluationNum": "269",
407 "gradeNum": "47",
408 "onlineQty": "0",
409 "shippingday": "0t0",
410 "gift": 0,
411 "promotionType": "0",
412 "attribute": "2000000000e2142748;2000000000e2142748;1e6;2e1;6e1;7e6;10e7;10e9;10e10;10e20;10e32;10e34;10e35;10e47;55e2644;12303e33;12484e12;15980e1;15981e1;36044e6;36045e12;36048e39;39033e7;39034e2;39074e12;39715eiPhone 6;39929e11;41635e1;41745e1;41749e3;42355e10;42617e25;42617e26;42617e27;42617e29;42617e30;42617e31;42617e32;42617e33;42839e6;43001e138.1*67.0*6.9(mm);43169e配备 64 位架构的 A8 芯片,M8 运动协处理器;43175eTrue Tone 闪光灯;43257eFDD-LTE\/TD-LTE\/WCDMA\/TD-SCDMA\/CDMA2000\/GSM\/CDMA;43258e移动4G(TD-LTE)\/联通4G(FDD-LTE)\/电信4G(FDD-LTE);移动3G(TD-SCDMA)\/联通3G(WCDMA)\/电信3G(CDMA2000);移动2G\/联通2G(GSM)\/电信2G(CDMA);43261e不支持;43353e2;49e15?灰色;42914?内存e2?64G;43246?制式e3?4.7寸三网通版",
413 "saleNum": "34",
414 "productTypeMasterid": "0",
415 "areaCode": "1",
416 "classid": "203320",
417 "tag": "超薄手机 女神手机 拍照功能强 商务手机 外观漂亮 指纹识别 主流潮机",
418 "goodsUrl": "http:\/\/item.yixun.com\/item-2142748.html",
419 "picUrl": "http:\/\/img2.wgimg.com\/qqbuy\/2297188762\/item-00000000000000000000007188EC519A.0.jpg\/200?55D6B760",
420 "reachable": "0"
421 },
422 {
423 "sysNo": "2142678",
424 "skuid": "487648691011",
425 "productID": "101-006-69367",
426 "productTitle": "苹果(Apple)iPhone 6 Plus (A1524) 16GB 银色 移动联通电信4G手机",
427 "price": "547700",
428 "activePrice": "",
429 "marketprice": "608800",
430 "promotionDesc": "A1524、A1586为三网通版,支持移动\/联通\/电信4G\/3G\/2G。找水货?找翻新?没有!易迅网为国行正品代言!!",
431 "manufacturerCode": "49",
432 "manufacturerName": "苹果(Apple)",
433 "evaluationNum": "322",
434 "gradeNum": "48",
435 "onlineQty": "624",
436 "shippingday": "0t0",
437 "gift": 0,
438 "promotionType": "0",
439 "attribute": "2000000000e2142678;2000000000e2142678;1e6;2e1;6e1;7e6;10e7;10e9;10e10;10e20;10e32;10e34;10e35;10e47;55e2644;12303e38;12484e12;15980e1;15981e1;36044e6;36045e10;36048e15;39033e7;39034e2;39074e12;39715eiPhone 6 Plus;39929e20;41635e1;41745e1;41749e3;42355e10;42617e25;42617e26;42617e27;42617e29;42617e30;42617e31;42617e32;42617e33;42839e7;43001e158.1*77.8*7.1(mm);43169e配备 64 位架构的 A8 芯片,M8 运动协处理器;43175eTrue Tone 闪光灯;43257eFDD-LTE\/TD-LTE\/WCDMA\/TD-SCDMA\/CDMA2000\/GSM\/CDMA;43258e移动4G(TD-LTE)\/联通4G(FDD-LTE)\/电信4G(FDD-LTE);移动3G(TD-SCDMA)\/联通3G(WCDMA)\/电信3G(CDMA2000);移动2G\/联通2G(GSM)\/电信2G(CDMA);43261e不支持;43353e2;49e14?银色;42914?内存e1?16G;43246?制式e4?5.5寸三网通版",
440 "saleNum": "3",
441 "productTypeMasterid": "0",
442 "areaCode": "1",
443 "classid": "203320",
444 "tag": "超薄手机 大屏手机 待机时间长 高清屏 女神手机 拍照功能强 商务手机 外观漂亮 指纹识别 主流潮机",
445 "goodsUrl": "http:\/\/item.yixun.com\/item-2142678.html",
446 "picUrl": "http:\/\/img3.wgimg.com\/qqbuy\/2317386563\/item-0000000000000000000000718A208343.0.jpg\/200?55D6C534",
447 "reachable": "0"
448 },
449 {
450 "sysNo": "2142708",
451 "skuid": "487625869405",
452 "productID": "101-006-69383",
453 "productTitle": "苹果(Apple)iPhone 6 Plus (A1524) 64GB 深空灰色 移动联通电信4G手机",
454 "price": "638800",
455 "activePrice": "",
456 "marketprice": "688800",
457 "promotionDesc": "A1524、A1586为三网通版,支持移动\/联通\/电信4G\/3G\/2G。找水货?找翻新?没有!易迅网为国行正品代言!!",
458 "manufacturerCode": "49",
459 "manufacturerName": "苹果(Apple)",
460 "evaluationNum": "146",
461 "gradeNum": "49",
462 "onlineQty": "125",
463 "shippingday": "0t0",
464 "gift": 0,
465 "promotionType": "0",
466 "attribute": "2000000000e2142708;2000000000e2142708;1e6;2e1;6e1;7e6;10e7;10e9;10e10;10e20;10e32;10e34;10e35;10e47;55e2644;12303e38;12484e12;15980e1;15981e1;36044e6;36045e12;36048e15;39033e7;39034e2;39074e12;39715eiPhone 6 Plus;39929e11;41635e1;41745e1;41749e3;42355e10;42617e25;42617e26;42617e27;42617e29;42617e30;42617e31;42617e32;42617e33;42839e7;43001e158.1*77.8*7.1(mm);43169e配备 64 位架构的 A8 芯片,M8 运动协处理器;43175eTrue Tone 闪光灯;43257eFDD-LTE\/TD-LTE\/WCDMA\/TD-SCDMA\/CDMA2000\/GSM\/CDMA;43258e移动4G(TD-LTE)\/联通4G(FDD-LTE)\/电信4G(FDD-LTE);移动3G(TD-SCDMA)\/联通3G(WCDMA)\/电信3G(CDMA2000);移动2G\/联通2G(GSM)\/电信2G(CDMA);43261e不支持;43353e2;49e15?深空灰色;42914?内存e2?64G;43246?制式e4?5.5寸三网通版",
467 "saleNum": "7",
468 "productTypeMasterid": "0",
469 "areaCode": "1",
470 "classid": "203320",
471 "tag": "超薄手机 大屏手机 待机时间长 高清屏 女神手机 拍照功能强 商务手机 外观漂亮 指纹识别 主流潮机",
472 "goodsUrl": "http:\/\/item.yixun.com\/item-2142708.html",
473 "picUrl": "http:\/\/img1.wgimg.com\/qqbuy\/2294564957\/item-00000000000000000000007188C4485D.0.jpg\/200?55D6B723",
474 "reachable": "0"
475 },
476 {
477 "sysNo": "2142712",
478 "skuid": "487626131654",
479 "productID": "101-006-69385",
480 "productTitle": "苹果(Apple)iPhone 6 (A1589) 64GB 金色 移动4G手机",
481 "price": "538800",
482 "activePrice": "",
483 "marketprice": "608800",
484 "promotionDesc": "A1589、A1593为移动版,支持移动4G\/3G\/2G,联通2G。找水货?找翻新?没有!易迅网为国行正品代言!!",
485 "manufacturerCode": "49",
486 "manufacturerName": "苹果(Apple)",
487 "evaluationNum": "255",
488 "gradeNum": "48",
489 "onlineQty": "0",
490 "shippingday": "0t0",
491 "gift": 0,
492 "promotionType": "0",
493 "attribute": "2000000000e2142712;2000000000e2142712;1e6;2e1;6e1;7e6;10e7;10e9;10e10;10e20;10e32;10e34;10e35;10e47;55e2644;12303e33;12484e12;15980e1;15981e1;36044e6;36045e12;36048e39;39033e7;39034e2;39074e12;39715eiPhone 6;39929e28;41635e1;41745e1;41749e3;42355e10;42617e25;42617e27;42617e31;42839e6;43001e138.1*67.0*6.9(mm);43169e配备 64 位架构的 A8 芯片,M8 运动协处理器;43175eTrue Tone 闪光灯;43257eTD-LTE\/TD-SCDMA\/GSM;43258e移动4G(TD-LTE),出国漫游可正常使用FDD-LTE;移动3G(TD-SCDMA);43258e出国漫游可正常使用WCDMA;移动2G\/联通2G(GSM);43261e不支持;43353e2;49e9?金色;42914?内存e2?64G;43246?制式e1?4.7寸移动版",
494 "saleNum": "2",
495 "productTypeMasterid": "0",
496 "areaCode": "1",
497 "classid": "203320",
498 "tag": "超薄手机 女神手机 拍照功能强 商务手机 外观漂亮 指纹识别 主流潮机",
499 "goodsUrl": "http:\/\/item.yixun.com\/item-2142712.html",
500 "picUrl": "http:\/\/img2.wgimg.com\/qqbuy\/2294827206\/item-00000000000000000000007188C848C6.0.jpg\/200?55D6B724",
501 "reachable": "0"
502 },
503 {
504 "sysNo": "2142711",
505 "skuid": "487626066110",
506 "productID": "101-006-69384",
507 "productTitle": "苹果(Apple)iPhone 6 Plus (A1524) 16GB 深空灰色 移动联通电信4G手机",
508 "price": "558800",
509 "activePrice": "",
510 "marketprice": "608800",
511 "promotionDesc": "A1524、A1586为三网通版,支持移动\/联通\/电信4G\/3G\/2G。找水货?找翻新?没有!易迅网为国行正品代言!!",
512 "manufacturerCode": "49",
513 "manufacturerName": "苹果(Apple)",
514 "evaluationNum": "72",
515 "gradeNum": "48",
516 "onlineQty": "105",
517 "shippingday": "0t0",
518 "gift": 0,
519 "promotionType": "0",
520 "attribute": "2000000000e2142711;2000000000e2142711;1e6;2e1;6e1;7e6;10e7;10e9;10e10;10e20;10e32;10e34;10e35;10e47;55e2644;12303e38;12484e12;15980e1;15981e1;36044e6;36045e10;36048e15;39033e7;39034e2;39074e12;39715eiPhone 6 Plus;39929e11;41635e1;41745e1;41749e3;42355e10;42617e25;42617e26;42617e27;42617e29;42617e30;42617e31;42617e32;42617e33;42839e7;43001e158.1*77.8*7.1(mm);43169e配备 64 位架构的 A8 芯片,M8 运动协处理器;43175eTrue Tone 闪光灯;43257eFDD-LTE\/TD-LTE\/WCDMA\/TD-SCDMA\/CDMA2000\/GSM\/CDMA;43258e移动4G(TD-LTE)\/联通4G(FDD-LTE)\/电信4G(FDD-LTE);移动3G(TD-SCDMA)\/联通3G(WCDMA)\/电信3G(CDMA2000);移动2G\/联通2G(GSM)\/电信2G(CDMA);43261e不支持;43353e2;49e15?深空灰色;42914?内存e1?16G;43246?制式e4?5.5寸三网通版",
521 "saleNum": "2",
522 "productTypeMasterid": "0",
523 "areaCode": "1",
524 "classid": "203320",
525 "tag": "超薄手机 大屏手机 待机时间长 高清屏 女神手机 拍照功能强 商务手机 外观漂亮 指纹识别 主流潮机",
526 "goodsUrl": "http:\/\/item.yixun.com\/item-2142711.html",
527 "picUrl": "http:\/\/img2.wgimg.com\/qqbuy\/2294761662\/item-00000000000000000000007188C748BE.0.jpg\/200?55D6B723",
528 "reachable": "0"
529 },
530 {
531 "sysNo": "2142799",
532 "skuid": "487644363955",
533 "productID": "101-006-69437",
534 "productTitle": "苹果(Apple)iPhone 6 Plus (A1593) 16GB 金色 移动4G手机",
535 "price": "536800",
536 "activePrice": "",
537 "marketprice": "608800",
538 "promotionDesc": "A1589、A1593为移动版,支持移动4G\/3G\/2G,联通2G。找水货?找翻新?没有!易迅网为国行正品代言!!",
539 "manufacturerCode": "49",
540 "manufacturerName": "苹果(Apple)",
541 "evaluationNum": "183",
542 "gradeNum": "48",
543 "onlineQty": "0",
544 "shippingday": "0t0",
545 "gift": 0,
546 "promotionType": "0",
547 "attribute": "2000000000e2142799;2000000000e2142799;1e6;2e1;6e1;7e6;10e7;10e9;10e10;10e20;10e32;10e34;10e35;55e2644;12303e38;12484e12;15980e1;15981e1;36044e6;36045e10;36048e15;39033e7;39034e2;39074e12;39715eiPhone 6 Plus;39929e28;41635e1;41745e1;41749e3;42355e10;42617e25;42617e27;42617e31;42839e7;43001e158.1*77.8*7.1(mm);43169e配备 64 位架构的 A8 芯片,M8 运动协处理器;43175eTrue Tone 闪光灯;43257eTD-LTE\/TD-SCDMA\/GSM;43258e移动4G(TD-LTE),出国漫游可正常使用FDD-LTE;移动3G(TD-SCDMA),出国漫游可正常使用WCDMA;移动2G\/联通2G(GSM);43261e不支持;43353e2;49e9?金色;42914?内存e1?16G;43246?制式e2?5.5寸移动版",
548 "saleNum": "0",
549 "productTypeMasterid": "0",
550 "areaCode": "1",
551 "classid": "203320",
552 "tag": "超薄手机 大屏手机 待机时间长 高清屏 女神手机 拍照功能强 商务手机 外观漂亮 指纹识别 主流潮机",
553 "goodsUrl": "http:\/\/item.yixun.com\/item-2142799.html",
554 "picUrl": "http:\/\/img3.wgimg.com\/qqbuy\/2313059507\/item-00000000000000000000007189DE7CB3.0.jpg\/200?55D6B725",
555 "reachable": "0"
556 },
557 {
558 "sysNo": "2142704",
559 "skuid": "487625541482",
560 "productID": "101-006-69381",
561 "productTitle": "苹果(Apple)iPhone 6 Plus (A1593) 16GB 深空灰色 移动4G手机",
562 "price": "536800",
563 "activePrice": "",
564 "marketprice": "608800",
565 "promotionDesc": "A1589、A1593为移动版,支持移动4G\/3G\/2G,联通2G。找水货?找翻新?没有!易迅网为国行正品代言!!",
566 "manufacturerCode": "49",
567 "manufacturerName": "苹果(Apple)",
568 "evaluationNum": "48",
569 "gradeNum": "48",
570 "onlineQty": "24",
571 "shippingday": "0t0",
572 "gift": 0,
573 "promotionType": "0",
574 "attribute": "2000000000e2142704;2000000000e2142704;1e6;2e1;6e1;7e6;10e7;10e9;10e10;10e20;10e32;10e34;10e35;10e47;55e2644;12303e38;12484e12;15980e1;15981e1;36044e6;36045e10;36048e15;39033e7;39034e2;39074e12;39715eiPhone 6 Plus;39929e11;41635e1;41745e1;41749e3;42355e10;42617e25;42617e27;42617e31;42839e7;43001e158.1*77.8*7.1(mm);43169e配备 64 位架构的 A8 芯片,M8 运动协处理器;43175eTrue Tone 闪光灯;43257eTD-LTE\/TD-SCDMA\/GSM;43258e移动4G(TD-LTE),出国漫游可正常使用FDD-LTE;移动3G(TD-SCDMA);43258e出国漫游可正常使用WCDMA;移动2G\/联通2G(GSM);43261e不支持;43353e2;49e15?深空灰色;42914?内存e1?16G;43246?制式e2?5.5寸移动版",
575 "saleNum": "0",
576 "productTypeMasterid": "0",
577 "areaCode": "1",
578 "classid": "203320",
579 "tag": "超薄手机 大屏手机 待机时间长 高清屏 女神手机 拍照功能强 商务手机 外观漂亮 指纹识别 主流潮机",
580 "goodsUrl": "http:\/\/item.yixun.com\/item-2142704.html",
581 "picUrl": "http:\/\/img2.wgimg.com\/qqbuy\/2294237034\/item-00000000000000000000007188BF476A.0.jpg\/200?55D6B722",
582 "reachable": "0"
583 },
584 {
585 "sysNo": "2142672",
586 "skuid": "487623770685",
587 "productID": "101-006-69366",
588 "productTitle": "苹果(Apple)iPhone 6 Plus (A1593) 16GB 银色 移动4G手机",
589 "price": "536800",
590 "activePrice": "",
591 "marketprice": "608800",
592 "promotionDesc": "A1589、A1593为移动版,支持移动4G\/3G\/2G,联通2G。找水货?找翻新?没有!易迅网为国行正品代言!!",
593 "manufacturerCode": "49",
594 "manufacturerName": "苹果(Apple)",
595 "evaluationNum": "69",
596 "gradeNum": "47",
597 "onlineQty": "118",
598 "shippingday": "0t0",
599 "gift": 0,
600 "promotionType": "0",
601 "attribute": "2000000000e2142672;2000000000e2142672;1e6;2e1;6e1;7e6;10e7;10e9;10e10;10e20;10e32;10e34;10e35;10e47;55e2644;12303e38;12484e12;15980e1;15981e1;36044e6;36045e10;36048e15;39033e7;39034e2;39074e12;39715eiPhone 6 Plus;39929e20;41635e1;41745e1;41749e3;42355e10;42617e25;42617e27;42617e31;42839e7;43001e158.1*77.8*7.1(mm);43169e配备 64 位架构的 A8 芯片,M8 运动协处理器;43175eTrue Tone 闪光灯;43257eTD-LTE\/TD-SCDMA\/GSM;43258e移动4G(TD-LTE),出国漫游可正常使用FDD-LTE;移动3G(TD-SCDMA);43258e出国漫游可正常使用WCDMA;移动2G\/联通2G(GSM);43261e不支持;43353e2;49e14?银色;42914?内存e1?16G;43246?制式e2?5.5寸移动版",
602 "saleNum": "1",
603 "productTypeMasterid": "0",
604 "areaCode": "1",
605 "classid": "203320",
606 "tag": "超薄手机 大屏手机 待机时间长 高清屏 女神手机 拍照功能强 商务手机 外观漂亮 指纹识别 主流潮机",
607 "goodsUrl": "http:\/\/item.yixun.com\/item-2142672.html",
608 "picUrl": "http:\/\/img1.wgimg.com\/qqbuy\/2292466237\/item-00000000000000000000007188A4423D.0.jpg\/200?55D6B720",
609 "reachable": "0"
610 },
611 {
612 "sysNo": "2142821",
613 "skuid": "487632169771",
614 "productID": "101-006-69439",
615 "productTitle": "苹果(Apple)iPhone 6 (A1589) 64GB 银色 移动4G手机",
616 "price": "538800",
617 "activePrice": "",
618 "marketprice": "608800",
619 "promotionDesc": "A1589、A1593为移动版,支持移动4G\/3G\/2G,联通2G。找水货?找翻新?没有!易迅网为国行正品代言!!",
620 "manufacturerCode": "49",
621 "manufacturerName": "苹果(Apple)",
622 "evaluationNum": "127",
623 "gradeNum": "48",
624 "onlineQty": "0",
625 "shippingday": "0t0",
626 "gift": 0,
627 "promotionType": "0",
628 "attribute": "2000000000e2142821;2000000000e2142821;1e6;2e1;6e1;7e6;10e7;10e9;10e10;10e32;10e34;10e35;55e2644;12303e33;15980e1;15981e1;36044e6;36045e12;36048e39;39033e7;39034e2;39074e12;39715eiPhone 6;39929e20;41635e1;41745e1;41749e3;42355e10;42617e25;42617e27;42617e31;42839e6;43001e138.1*67.0*6.9(mm);43169e配备 64 位架构的 A8 芯片,M8 运动协处理器;43175eTrue Tone 闪光灯;43257eTD-LTE\/TD-SCDMA\/GSM;43258e移动4G(TD-LTE),出国漫游可正常使用FDD-LTE;移动3G(TD-SCDMA);43258e出国漫游可正常使用WCDMA;移动2G\/联通2G(GSM);43261e不支持;43353e2;49e14?银色;42914?内存e2?64G;43246?制式e1?4.7寸移动版",
629 "saleNum": "0",
630 "productTypeMasterid": "0",
631 "areaCode": "1",
632 "classid": "203320",
633 "tag": "超薄手机 女神手机 拍照功能强 商务手机 外观漂亮 指纹识别 主流潮机",
634 "goodsUrl": "http:\/\/item.yixun.com\/item-2142821.html",
635 "picUrl": "http:\/\/img3.wgimg.com\/qqbuy\/2300865323\/item-00000000000000000000007189246B2B.0.jpg\/200?55D6B725",
636 "reachable": "0"
637 },
638 {
639 "sysNo": "2142689",
640 "skuid": "487661213499",
641 "productID": "101-006-72946",
642 "productTitle": "苹果(Apple)iPhone 6 (A1586) 128GB 金色 移动联通电信4G手机",
643 "price": "618800",
644 "activePrice": "",
645 "marketprice": "688800",
646 "promotionDesc": "A1524、A1586为三网通版,支持移动\/联通\/电信4G\/3G\/2G。找水货?找翻新?没有!易迅网为国行正品代言!!",
647 "manufacturerCode": "49",
648 "manufacturerName": "苹果(Apple)",
649 "evaluationNum": "17",
650 "gradeNum": "47",
651 "onlineQty": "69",
652 "shippingday": "0t0",
653 "gift": 0,
654 "promotionType": "0",
655 "attribute": "2000000000e2142689;2000000000e2142689;1e6;2e1;6e1;7e6;10e7;10e9;10e10;10e20;10e32;10e34;10e35;10e47;55e2644;12303e33;12484e12;15980e1;15981e1;36044e6;36045e25;36048e39;39033e7;39034e2;39074e12;39715eiPhone 6;39929e28;41635e1;41745e1;41749e3;42355e10;42617e25;42617e26;42617e27;42617e29;42617e30;42617e31;42617e32;42617e33;42839e6;43001e138.1*67.0*6.9(mm);43169e配备 64 位架构的 A8 芯片,M8 运动协处理器;43175eTrue Tone 闪光灯;43257eFDD-LTE\/TD-LTE\/WCDMA\/TD-SCDMA\/CDMA2000\/GSM\/CDMA;43258e移动4G(TD-LTE)\/联通4G(FDD-LTE)\/电信4G(FDD-LTE);移动3G(TD-SCDMA)\/联通3G(WCDMA)\/电信3G(CDMA2000);移动2G\/联通2G(GSM)\/电信2G(CDMA);43261e不支持;43353e2;49e9?金色;42914?内存e4?128G;43246?制式e3?4.7寸三网通版",
656 "saleNum": "1",
657 "productTypeMasterid": "0",
658 "areaCode": "1",
659 "classid": "203320",
660 "tag": "超薄手机 女神手机 拍照功能强 商务手机 外观漂亮 指纹识别 主流潮机",
661 "goodsUrl": "http:\/\/item.yixun.com\/item-2142689.html",
662 "picUrl": "http:\/\/img3.wgimg.com\/qqbuy\/2329909051\/item-0000000000000000000000718ADF973B.0.jpg\/200?55D6B727",
663 "reachable": "0"
664 },
665 {
666 "sysNo": "2142706",
667 "skuid": "487625672678",
668 "productID": "101-006-72953",
669 "productTitle": "苹果(Apple)iPhone 6 Plus (A1524) 128GB 深空灰色 移动联通电信4G手机",
670 "price": "738800",
671 "activePrice": "",
672 "marketprice": "778800",
673 "promotionDesc": "A1524、A1586为三网通版,支持移动\/联通\/电信4G\/3G\/2G。找水货?找翻新?没有!易迅网为国行正品代言!!",
674 "manufacturerCode": "49",
675 "manufacturerName": "苹果(Apple)",
676 "evaluationNum": "10",
677 "gradeNum": "49",
678 "onlineQty": "94",
679 "shippingday": "0t0",
680 "gift": 0,
681 "promotionType": "0",
682 "attribute": "2000000000e2142706;2000000000e2142706;1e6;2e1;6e1;7e6;10e7;10e9;10e10;10e20;10e32;10e34;10e35;10e47;55e2644;12303e38;12484e12;15980e1;15981e1;36044e6;36045e25;36048e15;39033e7;39034e2;39074e12;39715eiPhone 6 Plus;39929e11;41635e1;41745e1;41749e3;42355e10;42617e25;42617e26;42617e27;42617e29;42617e30;42617e31;42617e32;42617e33;42839e7;43001e158.1*77.8*7.1(mm);43169e配备 64 位架构的 A8 芯片,M8 运动协处理器;43175eTrue Tone 闪光灯;43257eFDD-LTE\/TD-LTE\/WCDMA\/TD-SCDMA\/CDMA2000\/GSM\/CDMA;43258e移动4G(TD-LTE)\/联通4G(FDD-LTE)\/电信4G(FDD-LTE);移动3G(TD-SCDMA)\/联通3G(WCDMA)\/电信3G(CDMA2000);移动2G\/联通2G(GSM)\/电信2G(CDMA);43261e不支持;43353e2;49e15?深空灰色;42914?内存e4?128G;43246?制式e4?5.5寸三网通版",
683 "saleNum": "4",
684 "productTypeMasterid": "0",
685 "areaCode": "1",
686 "classid": "203320",
687 "tag": "超薄手机 大屏手机 待机时间长 高清屏 女神手机 拍照功能强 商务手机 外观漂亮 指纹识别 主流潮机",
688 "goodsUrl": "http:\/\/item.yixun.com\/item-2142706.html",
689 "picUrl": "http:\/\/img2.wgimg.com\/qqbuy\/2294368230\/item-00000000000000000000007188C147E6.0.jpg\/200?55D6B723",
690 "reachable": "0"
691 }],
692 "page": {
693 "current_page": 1,
694 "page_size": 24,
695 "total": 44,
696 "page_count": 2
697 }
698 }
699 }
HTTP请求响应结果数据

 

至此, JMeter学习-009-JMeter 后置处理器实例之 - 正则表达式提取器(二) 顺利完结,希望此文能够给初学 JMeter 的您一份参考。

最后,非常感谢亲的驻足,希望此文能对亲有所帮助。热烈欢迎亲一起探讨,共同进步。非常感谢! ^_^