ArticleInfoController分类下的咨询列表
Showing
1 changed file
with
798 additions
and
3 deletions
1 | -#ArticleInfoController# | ||
2 | -##1、getCategoryList()方法## | ||
3 | -请求参数 | 1 | +# ArticleInfoController # |
2 | +## 一、getCategoryList()方法:获取分类下的资讯列表 ## | ||
3 | + **请求参数** | ||
4 | 4 | ||
5 | +| 参数名称 | 参数类型 | 可否为空 |示例 |默认值 |备注 | | ||
6 | +| ---------|:--------:| --------:|-----:|------:|-----:| | ||
7 | +|client_type|string | 否 |h5 |h5 |客户端类型| | ||
8 | +|gender|string | 否 |1 |- |性别| | ||
9 | + | ||
10 | +**实现逻辑:** | ||
11 | + | ||
12 | +1、ArticleInfoController.getCategoryList()方法中调用sns.getCategory服务; | ||
13 | + | ||
14 | +2、进行分类列表查询前进行查询条件的组装,设置父目录的id:ParentId=0,设置查询的列表状态条件为启用状态:Status=1; | ||
15 | + | ||
16 | +3、在查询前校验请求参数ParentId和Status,若不为空,则列入查询条件,根据组装的查询条件对象ArticleSort查询数据库表article_sort,获取文章分类列表articleSortList; | ||
17 | + | ||
18 | +4、若查询结果articleSortList不为空,则获取列表中的id和name信息,返回封装的categoryRspBOList对象. | ||
19 | + | ||
20 | + | ||
21 | +**示例:** | ||
22 | + | ||
23 | +请求: | ||
24 | +http://localhost:8080/gateway/guang/api/*/category/get?client_type=h5&gender=1&debug=XYZ | ||
25 | + | ||
26 | +返回: | ||
27 | + | ||
28 | + { | ||
29 | + "alg": "SALT_MD5", | ||
30 | + "code": 200, | ||
31 | + "data": [ | ||
32 | + { | ||
33 | + "id": "0", | ||
34 | + "name": "推荐" | ||
35 | + }, | ||
36 | + { | ||
37 | + "id": "1", | ||
38 | + "name": "话题" | ||
39 | + }, | ||
40 | + { | ||
41 | + "id": "2", | ||
42 | + "name": "搭配" | ||
43 | + }, | ||
44 | + { | ||
45 | + "id": "3", | ||
46 | + "name": "潮人" | ||
47 | + }, | ||
48 | + { | ||
49 | + "id": "4", | ||
50 | + "name": "潮品" | ||
51 | + }, | ||
52 | + { | ||
53 | + "id": "59", | ||
54 | + "name": "专题" | ||
55 | + } | ||
56 | + ], | ||
57 | + "md5": "194e510756289bb8f83456c88373fdc1", | ||
58 | + "message": "分类列表" | ||
59 | + } | ||
60 | + | ||
61 | +## 二、getArticleList()方法:获取分类下的文章列表 ## | ||
62 | + | ||
63 | +** 请求参数** | ||
64 | + | ||
65 | +| 参数名称 | 参数类型 | 可否为空 |示例 |默认值 |备注 | | ||
66 | +| ---------|:--------:| --------:|-----:|------:|-----:| | ||
67 | +|sort_id|string|是|-|0|分类id| | ||
68 | +|gender|string|是|emptyString|-|性别| | ||
69 | +|author_id|string|是|1|0|作者id| | ||
70 | +|tag|string|是|-|emptyString|标签| | ||
71 | +|page|string|是|1|1|页码| | ||
72 | +|uid|string|是|25|0|用户id| | ||
73 | +|udid|string|是|-|emptyString|设备id| | ||
74 | +|limit|string|是|10|10|分页大小| | ||
75 | +|client_type|string|是|iphone|-|客户端类型| | ||
76 | + | ||
77 | +**实现逻辑:** | ||
78 | + | ||
79 | +1、ArticleInfoControllergetArticleList()方法中调用sns.getList服务; | ||
80 | + | ||
81 | +2、进行分类列表查询前进行请求参数的处理,根据请求参数查询数据库表article获取文章的数量; | ||
82 | + | ||
83 | +3、查询数据库表article_sort,获取所有的文章分类列表articleSortList; | ||
84 | + | ||
85 | +4、根据请求参数中的页码page信息从数据库表article中分页查询咨询列表,得查询结果列表articles; | ||
86 | + | ||
87 | +5、从查询结果articles中分别获取所有的文章id列表articleIdList和作者列表信息authorIdList; | ||
88 | + | ||
89 | +6、根据articleIdList列表信息查询数据库表comments,获取文章的评论数量列表信息articleCommentsCountMap;根据authorIdList列表信息获取作者的信息列表MAP:authorMap; | ||
90 | + | ||
91 | +7、根据请求参数中的设备id(UDid)获取文章的点赞列表articlePraises,转换为articlePraiseMap; | ||
92 | + | ||
93 | +8、根据请求参数中的用户id(Uid)查询数据库表user_favorite获取该用户的收藏列表信息userFavoriteMap; | ||
94 | + | ||
95 | +9、通过buildArticleInfo()方法组装所有文章信息,返回articleInfoBOList; | ||
96 | + | ||
97 | +10、根据请求参数中的标签tag查询数据库表tags_views,若存在该条浏览记录,则将该表的views字段值加1;若不存在,则在该表中增加该条浏览记录; | ||
98 | + | ||
99 | +11、组装相应参数,返回对象articleInfoRspBO. | ||
100 | + | ||
101 | +**示例:** | ||
102 | + | ||
103 | +请求: | ||
104 | +http://localhost:8080/gateway/guang/api/*/article/getList?debug=XYZ | ||
105 | + | ||
106 | +返回: | ||
107 | + | ||
108 | + { | ||
109 | + "alg": "SALT_MD5", | ||
110 | + "code": 200, | ||
111 | + "data": { | ||
112 | + "datetime": "1463123061", | ||
113 | + "list": { | ||
114 | + "adlist": [ | ||
115 | + { | ||
116 | + "bgColor": "", | ||
117 | + "src": "http://img12.static.yhbimg.com/yhb-img01/2016/04/18/14/0241a5f823e05c0c4975b346ed5a3c8a1a.jpg?imageView2/{mode}/w/{width}/h/{height}", | ||
118 | + "title": "", | ||
119 | + "url": "http://feature.yoho.cn/0418RUNNINGMAN/index.html?title=兄弟在奔跑,潮流在有货&share_id=944" | ||
120 | + }, | ||
121 | + { | ||
122 | + "bgColor": "", | ||
123 | + "src": "http://img11.static.yhbimg.com/yhb-img01/2016/04/19/01/0183769e29a4a77462ee276bbd5a94787f.jpg?imageView2/{mode}/w/{width}/h/{height}", | ||
124 | + "title": "", | ||
125 | + "url": "http://feature.yohobuy.com/0/0/897/index.html?title=我的潮流世界观&share_id=942" | ||
126 | + }, | ||
127 | + { | ||
128 | + "bgColor": "", | ||
129 | + "src": "http://img11.static.yhbimg.com/yhb-img01/2016/04/18/10/01800e18e1db50caaef5486f6355e57bb9.jpg?imageView2/{mode}/w/{width}/h/{height}", | ||
130 | + "title": "", | ||
131 | + "url": "http://feature.yoho.cn/0418APPLIST/index.html?title=带你回顾时尚大电影&share_id=940" | ||
132 | + }, | ||
133 | + { | ||
134 | + "bgColor": "", | ||
135 | + "src": "http://img12.static.yhbimg.com/yhb-img01/2016/04/11/10/027feebcf981dd2cc3fb08c610746bec30.jpg?imageView2/{mode}/w/{width}/h/{height}", | ||
136 | + "title": "", | ||
137 | + "url": "http://feature.yohobuy.com/0/0/896/index.html?title=潮流清单&share_id=918" | ||
138 | + }, | ||
139 | + { | ||
140 | + "bgColor": "", | ||
141 | + "src": "http://img12.static.yhbimg.com/yhb-img01/2016/04/14/02/02b49e9bbf24f9bd403a95aed83c8ae064.jpg?imageView2/{mode}/w/{width}/h/{height}", | ||
142 | + "title": "", | ||
143 | + "url": "http://feature.yoho.cn/NEWS/0414APPWEEKNEWSALL/index.html?title=一周速报&share_id=912" | ||
144 | + }, | ||
145 | + { | ||
146 | + "bgColor": "", | ||
147 | + "src": "http://img12.static.yhbimg.com/yhb-img01/2016/04/11/05/02579a7e14db7c17872a7deb4a8a31688a.jpg?imageView2/{mode}/w/{width}/h/{height}", | ||
148 | + "title": "", | ||
149 | + "url": "http://feature.yoho.cn/0411SNEAKERHEAD/index.html?title=SNEAKERHEAD REPORT&share_id=920" | ||
150 | + }, | ||
151 | + { | ||
152 | + "bgColor": "", | ||
153 | + "src": "http://img11.static.yhbimg.com/yhb-img01/2016/04/08/17/01ab07730fbfae2de97403e480f18b4239.jpg?imageView2/{mode}/w/{width}/h/{height}", | ||
154 | + "title": "", | ||
155 | + "url": "http://feature.yoho.cn/0408APPSEASON/index.html?title=机能穿衣舒适又加分&share_id=916" | ||
156 | + }, | ||
157 | + { | ||
158 | + "bgColor": "", | ||
159 | + "src": "http://img12.static.yhbimg.com/yhb-img01/2016/04/12/07/02aef74138f1265126fdd76f8a42dfca5e.jpg?imageView2/{mode}/w/{width}/h/{height}", | ||
160 | + "title": "", | ||
161 | + "url": "http://guang.m.yohobuy.com/info/index?id=42776" | ||
162 | + }, | ||
163 | + { | ||
164 | + "bgColor": "", | ||
165 | + "src": "http://img11.static.yhbimg.com/yhb-img01/2016/04/12/07/01dd0bee9513a94286ecbd0dec911865f7.jpg?imageView2/{mode}/w/{width}/h/{height}", | ||
166 | + "title": "", | ||
167 | + "url": "http://guang.m.yohobuy.com/info/index?id=42774" | ||
168 | + }, | ||
169 | + { | ||
170 | + "bgColor": "", | ||
171 | + "src": "http://img12.static.yhbimg.com/yhb-img01/2016/04/08/03/02186b0b66cdc37db1b9d2c3181b4f1bde.jpg?imageView2/{mode}/w/{width}/h/{height}", | ||
172 | + "title": "", | ||
173 | + "url": "http://feature.yohobuy.com/0/0/895/index.html?title=宅男女神们的小秘密&share_id=914" | ||
174 | + }, | ||
175 | + { | ||
176 | + "bgColor": "", | ||
177 | + "src": "http://img12.static.yhbimg.com/yhb-img01/2016/03/21/03/02d683f021eb6c21a2f19b7ddce5caa63a.jpg?imageView2/{mode}/w/{width}/h/{height}", | ||
178 | + "title": "", | ||
179 | + "url": "http://m.yohobuy.com/?title=星潮教室&content_code=ad28931ba6e5ff22ee79eb41943d77d7&template_id=60" | ||
180 | + } | ||
181 | + ], | ||
182 | + "artList": [ | ||
183 | + { | ||
184 | + "article_type": "1", | ||
185 | + "author": { | ||
186 | + "author_id": "8168294", | ||
187 | + "avatar": "http://img12.static.yhbimg.com/yhb-img02/2015/06/12/14/0220208c13de341448647b7eead758d592.jpg?imageView/0/w/100/h/100", | ||
188 | + "name": "1", | ||
189 | + "url": "http://guang.m.yohobuy.com/author/index?id=8168294" | ||
190 | + }, | ||
191 | + "author_id": "8168294", | ||
192 | + "category_id": "19", | ||
193 | + "category_name": "", | ||
194 | + "conver_image_type": "1", | ||
195 | + "id": 34192, | ||
196 | + "intro": "45", | ||
197 | + "isFavor": "N", | ||
198 | + "isPraise": "N", | ||
199 | + "is_recommended": "1", | ||
200 | + "praiseStatus": "true", | ||
201 | + "praise_num": "0", | ||
202 | + "publish_time": "05月12日 13:39", | ||
203 | + "share": { | ||
204 | + "url": "http://guang.m.yohobuy.com/info/index?id=34192" | ||
205 | + }, | ||
206 | + "src": "http://img12.static.yhbimg.com/article/2016/05/11/14/020c0f2b076e80abf1a92a121ad02c3327.jpg?imageView/{mode}/w/{width}/h/{height}", | ||
207 | + "title": "1111", | ||
208 | + "url": "http://guang.m.yohobuy.com/info/index?id=34192", | ||
209 | + "views_num": "134" | ||
210 | + }, | ||
211 | + { | ||
212 | + "article_type": "1", | ||
213 | + "author": { | ||
214 | + "author_id": "8168296", | ||
215 | + "avatar": "http://img10.static.yhbimg.com/author/2016/05/07/15/01bb3ae789c573502830726c3297d0c80a.png", | ||
216 | + "name": "雾萌萌", | ||
217 | + "url": "http://guang.m.yohobuy.com/author/index?id=8168296" | ||
218 | + }, | ||
219 | + "author_id": "8168296", | ||
220 | + "category_id": "1", | ||
221 | + "category_name": "话题", | ||
222 | + "conver_image_type": "1", | ||
223 | + "id": 34190, | ||
224 | + "intro": "恩恩", | ||
225 | + "isFavor": "N", | ||
226 | + "isPraise": "N", | ||
227 | + "is_recommended": "1", | ||
228 | + "praiseStatus": "true", | ||
229 | + "praise_num": "0", | ||
230 | + "publish_time": "05月10日 19:30", | ||
231 | + "share": { | ||
232 | + "url": "http://guang.m.yohobuy.com/info/index?id=34190" | ||
233 | + }, | ||
234 | + "src": "http://img13.static.yhbimg.com/article/2016/05/10/18/021ee5af0d9b4471e27626945f5f59ef67.jpg?imageView/{mode}/w/{width}/h/{height}", | ||
235 | + "title": "测试", | ||
236 | + "url": "http://guang.m.yohobuy.com/info/index?id=34190", | ||
237 | + "views_num": "76" | ||
238 | + }, | ||
239 | + { | ||
240 | + "article_type": "1", | ||
241 | + "author": { | ||
242 | + "author_id": "589238", | ||
243 | + "avatar": "http://img12.static.yhbimg.com/yhb-img02/2015/06/12/12/029c6f3c1e63043a13e895c2a861528d3d.jpg?imageView/0/w/100/h/100", | ||
244 | + "name": "三花一木", | ||
245 | + "url": "http://guang.m.yohobuy.com/author/index?id=589238" | ||
246 | + }, | ||
247 | + "author_id": "589238", | ||
248 | + "category_id": "19", | ||
249 | + "category_name": "", | ||
250 | + "conver_image_type": "1", | ||
251 | + "id": 34188, | ||
252 | + "intro": "锁定", | ||
253 | + "isFavor": "N", | ||
254 | + "isPraise": "N", | ||
255 | + "is_recommended": "1", | ||
256 | + "praiseStatus": "true", | ||
257 | + "praise_num": "0", | ||
258 | + "publish_time": "05月10日 18:50", | ||
259 | + "share": { | ||
260 | + "url": "http://guang.m.yohobuy.com/info/index?id=34188" | ||
261 | + }, | ||
262 | + "src": "http://img11.static.yhbimg.com/article/2016/05/10/18/01d27e1844bfce850bf13c6b4e67c78547.jpg?imageView/{mode}/w/{width}/h/{height}", | ||
263 | + "title": "11", | ||
264 | + "url": "http://guang.m.yohobuy.com/info/index?id=34188", | ||
265 | + "views_num": "524" | ||
266 | + }, | ||
267 | + { | ||
268 | + "article_type": "1", | ||
269 | + "author": { | ||
270 | + "author_id": "589238", | ||
271 | + "avatar": "http://img12.static.yhbimg.com/yhb-img02/2015/06/12/12/029c6f3c1e63043a13e895c2a861528d3d.jpg?imageView/0/w/100/h/100", | ||
272 | + "name": "三花一木", | ||
273 | + "url": "http://guang.m.yohobuy.com/author/index?id=589238" | ||
274 | + }, | ||
275 | + "author_id": "589238", | ||
276 | + "category_id": "3", | ||
277 | + "category_name": "潮人", | ||
278 | + "conver_image_type": "1", | ||
279 | + "id": 34184, | ||
280 | + "intro": "地方飒飒的", | ||
281 | + "isFavor": "N", | ||
282 | + "isPraise": "N", | ||
283 | + "is_recommended": "1", | ||
284 | + "praiseStatus": "true", | ||
285 | + "praise_num": "1", | ||
286 | + "publish_time": "05月10日 17:30", | ||
287 | + "share": { | ||
288 | + "url": "http://guang.m.yohobuy.com/info/index?id=34184" | ||
289 | + }, | ||
290 | + "src": "http://img12.static.yhbimg.com/article/2016/05/09/11/0270c89cc4a789a825cf4f6ecc02789e2e.gif?imageView/{mode}/w/{width}/h/{height}", | ||
291 | + "title": "代码显示检查-汪康", | ||
292 | + "url": "http://guang.m.yohobuy.com/info/index?id=34184", | ||
293 | + "views_num": "952" | ||
294 | + }, | ||
295 | + { | ||
296 | + "article_type": "1", | ||
297 | + "author": { | ||
298 | + "author_id": "8168292", | ||
299 | + "avatar": "http://img13.static.yhbimg.com/author/2016/04/26/11/025bce88d3e2f071cfed867cd0cc1322ce.jpg", | ||
300 | + "name": "missing you", | ||
301 | + "url": "http://guang.m.yohobuy.com/author/index?id=8168292" | ||
302 | + }, | ||
303 | + "author_id": "8168292", | ||
304 | + "category_id": "2", | ||
305 | + "category_name": "搭配", | ||
306 | + "conver_image_type": "1", | ||
307 | + "id": 34174, | ||
308 | + "intro": "missing you", | ||
309 | + "isFavor": "N", | ||
310 | + "isPraise": "N", | ||
311 | + "is_recommended": "1", | ||
312 | + "praiseStatus": "true", | ||
313 | + "praise_num": "0", | ||
314 | + "publish_time": "05月10日 09:10", | ||
315 | + "share": { | ||
316 | + "url": "http://guang.m.yohobuy.com/info/index?id=34174" | ||
317 | + }, | ||
318 | + "src": "http://img11.static.yhbimg.com/article/2016/04/29/10/01bb19f6bb0af56e0113c9ebff87316243.jpg?imageView/{mode}/w/{width}/h/{height}", | ||
319 | + "title": "保存文本验收", | ||
320 | + "url": "http://guang.m.yohobuy.com/info/index?id=34174", | ||
321 | + "views_num": "80" | ||
322 | + }, | ||
323 | + { | ||
324 | + "article_type": "1", | ||
325 | + "author": { | ||
326 | + "author_id": "8168290", | ||
327 | + "avatar": "http://img13.static.yhbimg.com/author/2016/04/25/17/02718717297ec254697aaf0a614dd72d8a.jpg", | ||
328 | + "name": "梁边妖", | ||
329 | + "url": "http://guang.m.yohobuy.com/author/index?id=8168290" | ||
330 | + }, | ||
331 | + "author_id": "8168290", | ||
332 | + "category_id": "1", | ||
333 | + "category_name": "话题", | ||
334 | + "conver_image_type": "1", | ||
335 | + "id": 34186, | ||
336 | + "intro": "111122200", | ||
337 | + "isFavor": "N", | ||
338 | + "isPraise": "N", | ||
339 | + "is_recommended": "1", | ||
340 | + "praiseStatus": "true", | ||
341 | + "praise_num": "0", | ||
342 | + "publish_time": "05月09日 14:41", | ||
343 | + "share": { | ||
344 | + "url": "http://guang.m.yohobuy.com/info/index?id=34186" | ||
345 | + }, | ||
346 | + "src": "http://img12.static.yhbimg.com/article/2016/05/09/14/0201920ab28fc0e52d95622bcc2d0e9ce3.jpg?imageView/{mode}/w/{width}/h/{height}", | ||
347 | + "title": "FDFSD", | ||
348 | + "url": "http://guang.m.yohobuy.com/info/index?id=34186", | ||
349 | + "views_num": "60" | ||
350 | + }, | ||
351 | + { | ||
352 | + "article_type": "1", | ||
353 | + "author": { | ||
354 | + "author_id": "8168290", | ||
355 | + "avatar": "http://img13.static.yhbimg.com/author/2016/04/25/17/02718717297ec254697aaf0a614dd72d8a.jpg", | ||
356 | + "name": "梁边妖", | ||
357 | + "url": "http://guang.m.yohobuy.com/author/index?id=8168290" | ||
358 | + }, | ||
359 | + "author_id": "8168290", | ||
360 | + "category_id": "1", | ||
361 | + "category_name": "话题", | ||
362 | + "conver_image_type": "1", | ||
363 | + "id": 34182, | ||
364 | + "intro": "乌拉拉", | ||
365 | + "isFavor": "N", | ||
366 | + "isPraise": "N", | ||
367 | + "is_recommended": "1", | ||
368 | + "praiseStatus": "true", | ||
369 | + "praise_num": "0", | ||
370 | + "publish_time": "05月09日 09:47", | ||
371 | + "share": { | ||
372 | + "url": "http://guang.m.yohobuy.com/info/index?id=34182" | ||
373 | + }, | ||
374 | + "src": "http://img13.static.yhbimg.com/article/2016/05/09/09/02892d24292d7a90741f4224ade8f089a9.jpg?imageView/{mode}/w/{width}/h/{height}", | ||
375 | + "title": "添加商品显示问题-汪康", | ||
376 | + "url": "http://guang.m.yohobuy.com/info/index?id=34182", | ||
377 | + "views_num": "491" | ||
378 | + }, | ||
379 | + { | ||
380 | + "article_type": "1", | ||
381 | + "author": { | ||
382 | + "author_id": "8168296", | ||
383 | + "avatar": "http://img10.static.yhbimg.com/author/2016/05/07/15/01bb3ae789c573502830726c3297d0c80a.png", | ||
384 | + "name": "雾萌萌", | ||
385 | + "url": "http://guang.m.yohobuy.com/author/index?id=8168296" | ||
386 | + }, | ||
387 | + "author_id": "8168296", | ||
388 | + "category_id": "1", | ||
389 | + "category_name": "话题", | ||
390 | + "conver_image_type": "1", | ||
391 | + "id": 34180, | ||
392 | + "intro": "21", | ||
393 | + "isFavor": "N", | ||
394 | + "isPraise": "N", | ||
395 | + "is_recommended": "1", | ||
396 | + "praiseStatus": "true", | ||
397 | + "praise_num": "0", | ||
398 | + "publish_time": "05月07日 17:24", | ||
399 | + "share": { | ||
400 | + "url": "http://guang.m.yohobuy.com/info/index?id=34180" | ||
401 | + }, | ||
402 | + "src": "http://img10.static.yhbimg.com/article/2016/05/07/17/01f33bd9eb84f3336b7a8ddf7c25f0c8e2.png?imageView/{mode}/w/{width}/h/{height}", | ||
403 | + "title": "测试多图", | ||
404 | + "url": "http://guang.m.yohobuy.com/info/index?id=34180", | ||
405 | + "views_num": "253" | ||
406 | + }, | ||
407 | + { | ||
408 | + "ads_img_size": "1088680", | ||
409 | + "article_type": "1", | ||
410 | + "author": { | ||
411 | + "author_id": "8168296", | ||
412 | + "avatar": "http://img10.static.yhbimg.com/author/2016/05/07/15/01bb3ae789c573502830726c3297d0c80a.png", | ||
413 | + "name": "雾萌萌", | ||
414 | + "url": "http://guang.m.yohobuy.com/author/index?id=8168296" | ||
415 | + }, | ||
416 | + "author_id": "8168296", | ||
417 | + "category_id": "3", | ||
418 | + "category_name": "潮人", | ||
419 | + "conver_image_type": "2", | ||
420 | + "id": 34178, | ||
421 | + "intro": "据台湾“中央社”5月6日报道,民进党籍“立委”许智杰6日透露称,有台湾学生到土耳其做交换学生,拿到的居留证资料的“国籍栏”被注明为“中华人民共和国”;台当局涉外部门表示,", | ||
422 | + "isFavor": "N", | ||
423 | + "isPraise": "N", | ||
424 | + "is_recommended": "1", | ||
425 | + "praiseStatus": "true", | ||
426 | + "praise_num": "0", | ||
427 | + "publish_time": "05月07日 15:55", | ||
428 | + "share": { | ||
429 | + "url": "http://guang.m.yohobuy.com/info/index?id=34178" | ||
430 | + }, | ||
431 | + "src": "http://img11.static.yhbimg.com/article/2016/05/07/15/01bf2eb0977644d52b1ba040cf41269c5f.png?imageView/{mode}/w/{width}/h/{height}", | ||
432 | + "title": "土耳其将台湾交换生国籍写中华人民共和国", | ||
433 | + "url": "http://news.sohu.com/20160506/n448054944.shtml?=306984407", | ||
434 | + "views_num": "6" | ||
435 | + }, | ||
436 | + { | ||
437 | + "article_type": "1", | ||
438 | + "author": { | ||
439 | + "author_id": "589238", | ||
440 | + "avatar": "http://img12.static.yhbimg.com/yhb-img02/2015/06/12/12/029c6f3c1e63043a13e895c2a861528d3d.jpg?imageView/0/w/100/h/100", | ||
441 | + "name": "三花一木", | ||
442 | + "url": "http://guang.m.yohobuy.com/author/index?id=589238" | ||
443 | + }, | ||
444 | + "author_id": "589238", | ||
445 | + "category_id": "1", | ||
446 | + "category_name": "话题", | ||
447 | + "conver_image_type": "1", | ||
448 | + "id": 34176, | ||
449 | + "intro": "添加内容测试添加内容测试添加内容测试添加内容测试添加内容测试添加内容测试", | ||
450 | + "isFavor": "N", | ||
451 | + "isPraise": "N", | ||
452 | + "is_recommended": "1", | ||
453 | + "praiseStatus": "true", | ||
454 | + "praise_num": "0", | ||
455 | + "publish_time": "05月07日 14:41", | ||
456 | + "share": { | ||
457 | + "url": "http://guang.m.yohobuy.com/info/index?id=34176" | ||
458 | + }, | ||
459 | + "src": "http://img10.static.yhbimg.com/article/2016/05/07/14/01a5fd1909a45e4dc028bd52e817a7cada.png?imageView/{mode}/w/{width}/h/{height}", | ||
460 | + "title": "一鞋多拥 足下工业 foot industry Lesiurely Weave CINNAMON STICK", | ||
461 | + "url": "2436432643", | ||
462 | + "views_num": "5" | ||
463 | + } | ||
464 | + ] | ||
465 | + }, | ||
466 | + "page": 1, | ||
467 | + "total": 60, | ||
468 | + "totalPage": 6 | ||
469 | + }, | ||
470 | + "md5": "17bd8f98b5ea8ba2c6c4a13c3dc7bfa4", | ||
471 | + "message": "资讯列表" | ||
472 | + } | ||
473 | + | ||
474 | + | ||
475 | +## 三、getStarClassroomArticleList()方法:获得‘星潮教室’一级分类中,标签开启状态下的文章 ## | ||
476 | + | ||
477 | + **请求参数** | ||
478 | + | ||
479 | +| 参数名称 | 参数类型 | 可否为空 |示例 |默认值 |备注 | | ||
480 | +| ---------|:--------:| --------:|-----:|------:|-----:| | ||
481 | +|sort_id|string|是|-|0|分类id| | ||
482 | +|gender|string|是|emptyString|-|性别| | ||
483 | +|author_id|string|是|1|0|作者id| | ||
484 | +|tag|string|是|-|emptyString|标签| | ||
485 | +|page|string|是|1|1|页码| | ||
486 | +|uid|string|是|25|0|用户id| | ||
487 | +|udid|string|是|-|emptyString|设备id| | ||
488 | +|limit|string|是|10|10|分页大小| | ||
489 | +|client_type|string|是|iphone|-|客户端类型| | ||
490 | + | ||
491 | +**实现逻辑:** | ||
492 | + | ||
493 | +1、ArticleInfoController.getStarClassroomArticleList()方法中调用sns.getStarClassroomArticleList服务,该请求参数中的client_type置为“android”; | ||
494 | + | ||
495 | +2、查询数据库表article_tags获得“星潮教室”一级分类中所有子分类的标签名称集合tags ; | ||
496 | + | ||
497 | +3、查询库表article_sort,获取所有文章分类的列表信息articleSortMap; | ||
498 | + | ||
499 | +4、查询库表article,获取“星潮教室”子分类开启状态标签下的文件列表articles; | ||
500 | + | ||
501 | +5、从articles中获取文章的ID列表articleIdList和文章的作者列表authorIdList; | ||
502 | + | ||
503 | +6、根据authorIdList查询库表author,获取作者信息authorMap; | ||
504 | + | ||
505 | +7、根据articleIdList列表信息查询数据库表comments,获取文章的评论数量列表信息articleCommentsCountMap;根据authorIdList列表信息获取作者的信息列表MAP:authorMap; | ||
506 | + | ||
507 | +8、根据请求参数中的标签tag查询数据库表tags_views,若存在该条浏览记录,则将该表的views字段值加1;若不存在,则在该表中增加该条浏览记录; | ||
508 | + | ||
509 | +9、组装响应参数,返回对象articleInfoRspBO. | ||
510 | + | ||
511 | + | ||
512 | +**示例:** | ||
513 | + | ||
514 | +请求: | ||
515 | +http://localhost:8080/gateway/guang/api/*/article/getStarClassroomArticleList?debug=XYZ | ||
516 | + | ||
517 | +返回: | ||
518 | + | ||
519 | + { | ||
520 | + "alg": "SALT_MD5", | ||
521 | + "code": 200, | ||
522 | + "data": { | ||
523 | + "datetime": "1463130182", | ||
524 | + "list": { | ||
525 | + "artList": [ | ||
526 | + { | ||
527 | + "article_type": "1", | ||
528 | + "author": { | ||
529 | + "author_id": "7304719", | ||
530 | + "avatar": "http://img12.static.yhbimg.com/yhb-img02/2015/06/12/11/02ad0fa0a6066ede986b969840c620540f.jpg?imageView/0/w/100/h/100", | ||
531 | + "name": "胡子小鸡", | ||
532 | + "url": "http://guang.m.yohobuy.com/author/index?id=7304719&openby:yohobuy={\"action\":\"go.h5\",\"params\":{\"param\":{\"id\":\"7304719\"},\"share\":\"\",\"id\":7304719,\"type\":0,\"islogin\":\"N\",\"url\":\"http://guang.m.yohobuy.com/author/index\"}}" | ||
533 | + }, | ||
534 | + "author_id": "7304719", | ||
535 | + "category_id": "19", | ||
536 | + "category_name": "", | ||
537 | + "conver_image_type": "1", | ||
538 | + "id": 34172, | ||
539 | + "intro": "添加商品测试", | ||
540 | + "isFavor": "N", | ||
541 | + "isPraise": "N", | ||
542 | + "is_recommended": "1", | ||
543 | + "praiseStatus": "true", | ||
544 | + "praise_num": "0", | ||
545 | + "publish_time": "06月22日 14:25", | ||
546 | + "share": { | ||
547 | + "url": "http://guang.m.yohobuy.com/info/index?id=34172&openby:yohobuy={\"action\":\"go.share\",\"params\":{\"pic\":\"http://img13.static.yhbimg.com/article/2016/04/28/17/027f1fbd543afb82d95047b0c578010aa0.png?imageView/2/w/640/h/640\",\"title\":\"是的\",\"url\":\"http://guang.m.yohobuy.com/info/index?id=34172\",\"content\":\"潮流资讯,新鲜贩售,YOHO!有货【逛】不停\"}}" | ||
548 | + }, | ||
549 | + "src": "http://img13.static.yhbimg.com/article/2016/04/28/17/027f1fbd543afb82d95047b0c578010aa0.png?imageView/{mode}/w/{width}/h/{height}", | ||
550 | + "title": "是的", | ||
551 | + "url": "http://guang.m.yohobuy.com/info/index?id=34172&openby:yohobuy={\"action\":\"go.h5\",\"params\":{\"param\":{\"id\":\"34172\"},\"update_flag\":\"3e72e73226c8c5cd3d34e84270933fae\",\"shareparam\":{\"id\":34172},\"share\":\"/guang/api/v1/share/guang\",\"id\":34172,\"type\":1,\"url\":\"http://guang.m.yohobuy.com/info/index\",\"islogin\":\"N\"}}", | ||
552 | + "views_num": "542" | ||
553 | + }, | ||
554 | + { | ||
555 | + "ads_img_size": "1088680", | ||
556 | + "article_type": "1", | ||
557 | + "author": { | ||
558 | + "author_id": "8168296", | ||
559 | + "avatar": "http://img10.static.yhbimg.com/author/2016/05/07/15/01bb3ae789c573502830726c3297d0c80a.png", | ||
560 | + "name": "雾萌萌", | ||
561 | + "url": "http://guang.m.yohobuy.com/author/index?id=8168296&openby:yohobuy={\"action\":\"go.h5\",\"params\":{\"param\":{\"id\":\"8168296\"},\"share\":\"\",\"id\":8168296,\"type\":0,\"islogin\":\"N\",\"url\":\"http://guang.m.yohobuy.com/author/index\"}}" | ||
562 | + }, | ||
563 | + "author_id": "8168296", | ||
564 | + "category_id": "3", | ||
565 | + "category_name": "潮人", | ||
566 | + "conver_image_type": "2", | ||
567 | + "id": 34178, | ||
568 | + "intro": "据台湾“中央社”5月6日报道,民进党籍“立委”许智杰6日透露称,有台湾学生到土耳其做交换学生,拿到的居留证资料的“国籍栏”被注明为“中华人民共和国”;台当局涉外部门表示,", | ||
569 | + "isFavor": "N", | ||
570 | + "isPraise": "N", | ||
571 | + "is_recommended": "1", | ||
572 | + "praiseStatus": "true", | ||
573 | + "praise_num": "0", | ||
574 | + "publish_time": "05月07日 15:55", | ||
575 | + "share": { | ||
576 | + "url": "http://guang.m.yohobuy.com/info/index?id=34178&openby:yohobuy={\"action\":\"go.share\",\"params\":{\"pic\":\"http://img11.static.yhbimg.com/article/2016/05/07/15/01bf2eb0977644d52b1ba040cf41269c5f.png?imageView/2/w/640/h/640\",\"title\":\"土耳其将台湾交换生国籍写中华人民共和国\",\"url\":\"http://guang.m.yohobuy.com/info/index?id=34178\",\"content\":\"潮流资讯,新鲜贩售,YOHO!有货【逛】不停\"}}" | ||
577 | + }, | ||
578 | + "src": "http://img11.static.yhbimg.com/article/2016/05/07/15/01bf2eb0977644d52b1ba040cf41269c5f.png?imageView/{mode}/w/{width}/h/{height}", | ||
579 | + "title": "土耳其将台湾交换生国籍写中华人民共和国", | ||
580 | + "url": "http://news.sohu.com/20160506/n448054944.shtml?=306984407&openby:yohobuy={\"action\":\"go.h5\",\"params\":{\"\":\"306984407\",\"url\":\"http://news.sohu.com/20160506/n448054944.shtml\"}}", | ||
581 | + "views_num": "6" | ||
582 | + }, | ||
583 | + { | ||
584 | + "ads_img_size": "1088680", | ||
585 | + "article_type": "1", | ||
586 | + "author_id": "521285", | ||
587 | + "category_id": "2", | ||
588 | + "category_name": "搭配", | ||
589 | + "conver_image_type": "1", | ||
590 | + "id": 3, | ||
591 | + "intro": "依稀记得上初中那会,谁要有一件胸口带“钩子”的衣服,那他/她走路一定昂首挺胸,生怕别人看不见一样!", | ||
592 | + "isFavor": "N", | ||
593 | + "isPraise": "N", | ||
594 | + "is_recommended": "0", | ||
595 | + "praiseStatus": "true", | ||
596 | + "praise_num": "28", | ||
597 | + "publish_time": "03月30日 00:00", | ||
598 | + "share": { | ||
599 | + "url": "http://guang.m.yohobuy.com/info/index?id=3&openby:yohobuy={\"action\":\"go.share\",\"params\":{\"pic\":\"http://img10.static.yhbimg.com/yhb-img01/2015/05/20/20/017f40fe5be35c9e1412cd8e2164c87e83.jpg?imageView/2/w/640/h/640\",\"title\":\"会动的的免费广告!\",\"url\":\"http://guang.m.yohobuy.com/info/index?id=3\",\"content\":\"潮流资讯,新鲜贩售,YOHO!有货【逛】不停\"}}" | ||
600 | + }, | ||
601 | + "src": "http://img10.static.yhbimg.com/yhb-img01/2015/05/20/20/017f40fe5be35c9e1412cd8e2164c87e83.jpg?imageView/{mode}/w/{width}/h/{height}", | ||
602 | + "title": "会动的的免费广告!", | ||
603 | + "url": "asdasdas?openby:yohobuy={\"action\":\"go.mine\"}", | ||
604 | + "views_num": "39859" | ||
605 | + }, | ||
606 | + { | ||
607 | + "ads_img_size": "", | ||
608 | + "article_type": "1", | ||
609 | + "author_id": "5105041", | ||
610 | + "category_id": "1", | ||
611 | + "category_name": "话题", | ||
612 | + "conver_image_type": "2", | ||
613 | + "id": 29630, | ||
614 | + "intro": "Wuli凡凡前天回广州老家,小蛮腰可是为他亮起了欢迎语~这阵仗,简直了。看来《老炮儿》和wuli凡凡的人气,实在是高的不要不要。~", | ||
615 | + "isFavor": "N", | ||
616 | + "isPraise": "N", | ||
617 | + "is_recommended": "0", | ||
618 | + "praiseStatus": "true", | ||
619 | + "praise_num": "49", | ||
620 | + "publish_time": "12月25日 22:00", | ||
621 | + "share": { | ||
622 | + "url": "http://guang.m.yohobuy.com/info/index?id=29630&openby:yohobuy={\"action\":\"go.share\",\"params\":{\"pic\":\"http://img11.static.yhbimg.com/yhb-img01/2015/12/25/10/014df3a77aad110a75f4c63865461785da.jpg?imageView/2/w/640/h/640\",\"title\":\"《老炮儿》造型大吐槽!吴亦凡李易峰戏里戏外造型PK!\",\"url\":\"http://guang.m.yohobuy.com/info/index?id=29630\",\"content\":\"潮流资讯,新鲜贩售,YOHO!有货【逛】不停\"}}" | ||
623 | + }, | ||
624 | + "src": "http://img11.static.yhbimg.com/yhb-img01/2015/12/25/10/014df3a77aad110a75f4c63865461785da.jpg?imageView/{mode}/w/{width}/h/{height}", | ||
625 | + "title": "《老炮儿》造型大吐槽!吴亦凡李易峰戏里戏外造型PK!", | ||
626 | + "url": "http://guang.m.yohobuy.com/info/index?id=29630&openby:yohobuy={\"action\":\"go.h5\",\"params\":{\"param\":{\"id\":\"29630\"},\"update_flag\":\"e9427cb0bf596679b47663f9e8882d99\",\"shareparam\":{\"id\":29630},\"share\":\"/guang/api/v1/share/guang\",\"id\":29630,\"type\":1,\"url\":\"http://guang.m.yohobuy.com/info/index\",\"islogin\":\"N\"}}", | ||
627 | + "views_num": "57424" | ||
628 | + }, | ||
629 | + { | ||
630 | + "ads_img_size": "", | ||
631 | + "article_type": "1", | ||
632 | + "author": { | ||
633 | + "author_id": "7304719", | ||
634 | + "avatar": "http://img12.static.yhbimg.com/yhb-img02/2015/06/12/11/02ad0fa0a6066ede986b969840c620540f.jpg?imageView/0/w/100/h/100", | ||
635 | + "name": "胡子小鸡", | ||
636 | + "url": "http://guang.m.yohobuy.com/author/index?id=7304719&openby:yohobuy={\"action\":\"go.h5\",\"params\":{\"param\":{\"id\":\"7304719\"},\"share\":\"\",\"id\":7304719,\"type\":0,\"islogin\":\"N\",\"url\":\"http://guang.m.yohobuy.com/author/index\"}}" | ||
637 | + }, | ||
638 | + "author_id": "7304719", | ||
639 | + "category_id": "2", | ||
640 | + "category_name": "搭配", | ||
641 | + "conver_image_type": "1", | ||
642 | + "id": 24450, | ||
643 | + "intro": "时髦并非一定要绞尽脑汁的叠加搭配。简单的一身装扮也能随性又有魅力!", | ||
644 | + "isFavor": "N", | ||
645 | + "isPraise": "N", | ||
646 | + "is_recommended": "0", | ||
647 | + "praiseStatus": "true", | ||
648 | + "praise_num": "7", | ||
649 | + "publish_time": "11月18日 13:00", | ||
650 | + "share": { | ||
651 | + "url": "http://guang.m.yohobuy.com/info/index?id=24450&openby:yohobuy={\"action\":\"go.share\",\"params\":{\"pic\":\"http://img12.static.yhbimg.com/yhb-img01/2015/11/17/03/024e92ed758690ff392797d46237e3d0f9.jpg?imageView/2/w/640/h/640\",\"title\":\"随便穿穿都很美?那么别错过这一套!\",\"url\":\"http://guang.m.yohobuy.com/info/index?id=24450\",\"content\":\"潮流资讯,新鲜贩售,YOHO!有货【逛】不停\"}}" | ||
652 | + }, | ||
653 | + "src": "http://img12.static.yhbimg.com/yhb-img01/2015/11/17/03/024e92ed758690ff392797d46237e3d0f9.jpg?imageView/{mode}/w/{width}/h/{height}", | ||
654 | + "title": "随便穿穿都很美?那么别错过这一套!", | ||
655 | + "url": "http://guang.m.yohobuy.com/info/index?id=24450&openby:yohobuy={\"action\":\"go.h5\",\"params\":{\"param\":{\"id\":\"24450\"},\"update_flag\":\"286a367f4e35aee5086f340e55cf861e\",\"shareparam\":{\"id\":24450},\"share\":\"/guang/api/v1/share/guang\",\"id\":24450,\"type\":1,\"url\":\"http://guang.m.yohobuy.com/info/index\",\"islogin\":\"N\"}}", | ||
656 | + "views_num": "20812" | ||
657 | + }, | ||
658 | + { | ||
659 | + "ads_img_size": "", | ||
660 | + "article_type": "1", | ||
661 | + "author_id": "8168229", | ||
662 | + "category_id": "4", | ||
663 | + "category_name": "潮品", | ||
664 | + "conver_image_type": "2", | ||
665 | + "id": 24454, | ||
666 | + "intro": "自Pump科技诞生以来,Reebok Pump系列下推出了众多受人追捧的经典鞋款。2015年秋冬,Reebok携全新Insta Pump Fury以及 Pump Omni Lite乘风而来,采用低调奢华的设计风格,为众多热爱街头时尚风格的女性,带来女子专属的全新Pump Premium Pack系列。", | ||
667 | + "isFavor": "N", | ||
668 | + "isPraise": "N", | ||
669 | + "is_recommended": "0", | ||
670 | + "praiseStatus": "true", | ||
671 | + "praise_num": "6", | ||
672 | + "publish_time": "11月18日 09:00", | ||
673 | + "share": { | ||
674 | + "url": "http://guang.m.yohobuy.com/info/index?id=24454&openby:yohobuy={\"action\":\"go.share\",\"params\":{\"pic\":\"http://img11.static.yhbimg.com/yhb-img01/2015/11/17/03/01189ad58c2e20e92ec432371d374ed3dc.jpg?imageView/2/w/640/h/640\",\"title\":\"专为“她”属的奢华街头时尚,Reebok 女子Pump Premium Pack系列登陆YOHO!BUY有货\",\"url\":\"http://guang.m.yohobuy.com/info/index?id=24454\",\"content\":\"潮流资讯,新鲜贩售,YOHO!有货【逛】不停\"}}" | ||
675 | + }, | ||
676 | + "src": "http://img11.static.yhbimg.com/yhb-img01/2015/11/17/03/01189ad58c2e20e92ec432371d374ed3dc.jpg?imageView/{mode}/w/{width}/h/{height}", | ||
677 | + "title": "专为“她”属的奢华街头时尚,Reebok 女子Pump Premium Pack系列登陆YOHO!BUY有货", | ||
678 | + "url": "http://guang.m.yohobuy.com/info/index?id=24454&openby:yohobuy={\"action\":\"go.h5\",\"params\":{\"param\":{\"id\":\"24454\"},\"update_flag\":\"b741384cba79577fc882dc4796840c39\",\"shareparam\":{\"id\":24454},\"share\":\"/guang/api/v1/share/guang\",\"id\":24454,\"type\":1,\"url\":\"http://guang.m.yohobuy.com/info/index\",\"islogin\":\"N\"}}", | ||
679 | + "views_num": "12967" | ||
680 | + }, | ||
681 | + { | ||
682 | + "ads_img_size": "", | ||
683 | + "article_type": "1", | ||
684 | + "author": { | ||
685 | + "author_id": "3997053", | ||
686 | + "avatar": "http://img13.static.yhbimg.com/yhb-img02/2015/06/12/13/02e09398fe2b9335212f798495f8a8ae6c.jpg?imageView/0/w/100/h/100", | ||
687 | + "name": "艾迪虎", | ||
688 | + "url": "http://guang.m.yohobuy.com/author/index?id=3997053&openby:yohobuy={\"action\":\"go.h5\",\"params\":{\"param\":{\"id\":\"3997053\"},\"share\":\"\",\"id\":3997053,\"type\":0,\"islogin\":\"N\",\"url\":\"http://guang.m.yohobuy.com/author/index\"}}" | ||
689 | + }, | ||
690 | + "author_id": "3997053", | ||
691 | + "category_id": "3", | ||
692 | + "category_name": "潮人", | ||
693 | + "conver_image_type": "1", | ||
694 | + "id": 13577, | ||
695 | + "intro": "此番依旧是走着经典的港式穿搭路线,灰白色的插肩T恤搭配灰色休闲裤,简洁利索的工装元素而又不失街头之感,足下的converse Taylor All Star也是极具街头气息。的确是志明范儿十足。", | ||
696 | + "isFavor": "N", | ||
697 | + "isPraise": "N", | ||
698 | + "is_recommended": "0", | ||
699 | + "praiseStatus": "true", | ||
700 | + "praise_num": "370", | ||
701 | + "publish_time": "10月06日 17:00", | ||
702 | + "share": { | ||
703 | + "url": "http://guang.m.yohobuy.com/info/index?id=13577&openby:yohobuy={\"action\":\"go.share\",\"params\":{\"pic\":\"http://img12.static.yhbimg.com/yhb-img01/2015/09/06/10/026a40897d0dc883ff833634fafa8210d9.jpg?imageView/2/w/640/h/640\",\"title\":\"“志明风”再现,余文乐初秋港式型搭LOOK\",\"url\":\"http://guang.m.yohobuy.com/info/index?id=13577\",\"content\":\"潮流资讯,新鲜贩售,YOHO!有货【逛】不停\"}}" | ||
704 | + }, | ||
705 | + "src": "http://img12.static.yhbimg.com/yhb-img01/2015/09/06/10/026a40897d0dc883ff833634fafa8210d9.jpg?imageView/{mode}/w/{width}/h/{height}", | ||
706 | + "title": "“志明风”再现,余文乐初秋港式型搭LOOK", | ||
707 | + "url": "http://guang.m.yohobuy.com/info/index?id=13577&openby:yohobuy={\"action\":\"go.h5\",\"params\":{\"param\":{\"id\":\"13577\"},\"update_flag\":\"9bed6033d6955da96d5f367260582f4b\",\"shareparam\":{\"id\":13577},\"share\":\"/guang/api/v1/share/guang\",\"id\":13577,\"type\":1,\"url\":\"http://guang.m.yohobuy.com/info/index\",\"islogin\":\"N\"}}", | ||
708 | + "views_num": "94249" | ||
709 | + }, | ||
710 | + { | ||
711 | + "ads_img_size": "", | ||
712 | + "article_type": "1", | ||
713 | + "author": { | ||
714 | + "author_id": "3062326", | ||
715 | + "avatar": "http://img12.static.yhbimg.com/yhb-img02/2015/06/12/11/02c5b952480d8c2df55639cd0e918bfd34.jpg?imageView/0/w/100/h/100", | ||
716 | + "name": "V.Z.", | ||
717 | + "url": "http://guang.m.yohobuy.com/author/index?id=3062326&openby:yohobuy={\"action\":\"go.h5\",\"params\":{\"param\":{\"id\":\"3062326\"},\"share\":\"\",\"id\":3062326,\"type\":0,\"islogin\":\"N\",\"url\":\"http://guang.m.yohobuy.com/author/index\"}}" | ||
718 | + }, | ||
719 | + "author_id": "3062326", | ||
720 | + "category_id": "3", | ||
721 | + "category_name": "潮人", | ||
722 | + "conver_image_type": "1", | ||
723 | + "id": 13635, | ||
724 | + "intro": "九月的伦敦温度通常只有十几度,甚至更低,的确有些“动人”~而作为时尚达人的韩火火当然不会被这突如其来的低温所折服。", | ||
725 | + "isFavor": "N", | ||
726 | + "isPraise": "N", | ||
727 | + "is_recommended": "0", | ||
728 | + "praiseStatus": "true", | ||
729 | + "praise_num": "287", | ||
730 | + "publish_time": "10月04日 22:30", | ||
731 | + "share": { | ||
732 | + "url": "http://guang.m.yohobuy.com/info/index?id=13635&openby:yohobuy={\"action\":\"go.share\",\"params\":{\"pic\":\"http://img12.static.yhbimg.com/yhb-img01/2015/09/07/02/023b64bad0c38834392c179942d777e582.jpg?imageView/2/w/640/h/640\",\"title\":\"在冻死人的伦敦,韩火火如何穿的风度与温度并存?\",\"url\":\"http://guang.m.yohobuy.com/info/index?id=13635\",\"content\":\"潮流资讯,新鲜贩售,YOHO!有货【逛】不停\"}}" | ||
733 | + }, | ||
734 | + "src": "http://img12.static.yhbimg.com/yhb-img01/2015/09/07/02/023b64bad0c38834392c179942d777e582.jpg?imageView/{mode}/w/{width}/h/{height}", | ||
735 | + "title": "在冻死人的伦敦,韩火火如何穿的风度与温度并存?", | ||
736 | + "url": "http://guang.m.yohobuy.com/info/index?id=13635&openby:yohobuy={\"action\":\"go.h5\",\"params\":{\"param\":{\"id\":\"13635\"},\"update_flag\":\"9bed6033d6955da96d5f367260582f4b\",\"shareparam\":{\"id\":13635},\"share\":\"/guang/api/v1/share/guang\",\"id\":13635,\"type\":1,\"url\":\"http://guang.m.yohobuy.com/info/index\",\"islogin\":\"N\"}}", | ||
737 | + "views_num": "113109" | ||
738 | + }, | ||
739 | + { | ||
740 | + "ads_img_size": "", | ||
741 | + "article_type": "1", | ||
742 | + "author": { | ||
743 | + "author_id": "8123499", | ||
744 | + "avatar": "http://img13.static.yhbimg.com/yhb-img02/2015/06/12/10/0256020c504fb08a176c5457599bdf5b49.jpg?imageView/0/w/100/h/100", | ||
745 | + "name": "Kishi", | ||
746 | + "url": "http://guang.m.yohobuy.com/author/index?id=8123499&openby:yohobuy={\"action\":\"go.h5\",\"params\":{\"param\":{\"id\":\"8123499\"},\"share\":\"\",\"id\":8123499,\"type\":0,\"islogin\":\"N\",\"url\":\"http://guang.m.yohobuy.com/author/index\"}}" | ||
747 | + }, | ||
748 | + "author_id": "8123499", | ||
749 | + "category_id": "4", | ||
750 | + "category_name": "潮品", | ||
751 | + "conver_image_type": "2", | ||
752 | + "id": 13809, | ||
753 | + "intro": "夏天眼看越过越远,空气中渐浓的秋意是不是也提醒着你是时候为衣柜里添加一件卫衣了?", | ||
754 | + "isFavor": "N", | ||
755 | + "isPraise": "N", | ||
756 | + "is_recommended": "0", | ||
757 | + "praiseStatus": "true", | ||
758 | + "praise_num": "26", | ||
759 | + "publish_time": "09月10日 11:10", | ||
760 | + "share": { | ||
761 | + "url": "http://guang.m.yohobuy.com/info/index?id=13809&openby:yohobuy={\"action\":\"go.share\",\"params\":{\"pic\":\"http://img11.static.yhbimg.com/yhb-img01/2015/09/07/12/01b52206e84c37e731636156a397b2c6bd.jpg?imageView/2/w/640/h/640\",\"title\":\"搞怪个性至上!LIGHTNING BEAR满印套头卫衣\",\"url\":\"http://guang.m.yohobuy.com/info/index?id=13809\",\"content\":\"潮流资讯,新鲜贩售,YOHO!有货【逛】不停\"}}" | ||
762 | + }, | ||
763 | + "src": "http://img11.static.yhbimg.com/yhb-img01/2015/09/07/12/01b52206e84c37e731636156a397b2c6bd.jpg?imageView/{mode}/w/{width}/h/{height}", | ||
764 | + "title": "搞怪个性至上!LIGHTNING BEAR满印套头卫衣", | ||
765 | + "url": "http://guang.m.yohobuy.com/info/index?id=13809&openby:yohobuy={\"action\":\"go.h5\",\"params\":{\"param\":{\"id\":\"13809\"},\"update_flag\":\"645414c46742ef3bcf3edc79de153209\",\"shareparam\":{\"id\":13809},\"share\":\"/guang/api/v1/share/guang\",\"id\":13809,\"type\":1,\"url\":\"http://guang.m.yohobuy.com/info/index\",\"islogin\":\"N\"}}", | ||
766 | + "views_num": "10584" | ||
767 | + }, | ||
768 | + { | ||
769 | + "ads_img_size": "", | ||
770 | + "article_type": "1", | ||
771 | + "author_id": "8168235", | ||
772 | + "category_id": "2", | ||
773 | + "category_name": "搭配", | ||
774 | + "conver_image_type": "1", | ||
775 | + "id": 13803, | ||
776 | + "intro": "穿的暖暖的装扮除了会让自己更愉悦外,还会让自己看起来更具亲和,在normcore大行其道的当下,暖色调也变成了一种抢手搭配,而驼色的针织衫正是可以让你看起来带些舒适感的单品推荐,配上一条休闲的西裤,加上一双帆布鞋,精致的配饰下看起来简约和休闲,最后喷上一点点香氛让除了视觉上的温暖以外还有一股清香的嗅觉体验。", | ||
777 | + "isFavor": "N", | ||
778 | + "isPraise": "N", | ||
779 | + "is_recommended": "0", | ||
780 | + "praiseStatus": "true", | ||
781 | + "praise_num": "66", | ||
782 | + "publish_time": "09月10日 10:30", | ||
783 | + "share": { | ||
784 | + "url": "http://guang.m.yohobuy.com/info/index?id=13803&openby:yohobuy={\"action\":\"go.share\",\"params\":{\"pic\":\"http://img11.static.yhbimg.com/yhb-img01/2015/09/07/11/016dfccb2cd4f3e9d3ac133d084ec48cef.jpg?imageView/2/w/640/h/640\",\"title\":\"简约舒适normcore,你可能需要来一件驼色针织衫\",\"url\":\"http://guang.m.yohobuy.com/info/index?id=13803\",\"content\":\"潮流资讯,新鲜贩售,YOHO!有货【逛】不停\"}}" | ||
785 | + }, | ||
786 | + "src": "http://img11.static.yhbimg.com/yhb-img01/2015/09/07/11/016dfccb2cd4f3e9d3ac133d084ec48cef.jpg?imageView/{mode}/w/{width}/h/{height}", | ||
787 | + "title": "简约舒适normcore,你可能需要来一件驼色针织衫", | ||
788 | + "url": "http://guang.m.yohobuy.com/info/index?id=13803&openby:yohobuy={\"action\":\"go.h5\",\"params\":{\"param\":{\"id\":\"13803\"},\"update_flag\":\"5b9724501839dfbe5ffcc00201868dc0\",\"shareparam\":{\"id\":13803},\"share\":\"/guang/api/v1/share/guang\",\"id\":13803,\"type\":1,\"url\":\"http://guang.m.yohobuy.com/info/index\",\"islogin\":\"N\"}}", | ||
789 | + "views_num": "39553" | ||
790 | + } | ||
791 | + ] | ||
792 | + }, | ||
793 | + "page": 1, | ||
794 | + "total": 38, | ||
795 | + "totalPage": 4 | ||
796 | + }, | ||
797 | + "md5": "081c03147e3eae753c267a043c7e9b41", | ||
798 | + "message": "星潮教室文章列表" | ||
799 | + } |
-
Please register or login to post a comment