作者 吴孟雨

首页

Component({
properties: {
item: {
type: Object
}
}
})
\ No newline at end of file
... ...
{
"component": true
}
\ No newline at end of file
... ...
<view class="img-box">
<view class="img-border">
<image src="{{item.images_list[0].url}}"></image>
<view class="area">
<text class="name">{{item.name}}</text>
<text class="num">还差1人</text>
</view>
<text>2018.4.28—4.30</text>
</view>
</view>
\ No newline at end of file
... ...
.img-border {
color: #333333;
font-size: 24rpx;
border: 1rpx solid #f2f5f6;
border-radius: 8rpx;
padding: 14rpx;
box-shadow: 2rpx 8rpx 28rpx rgba(89, 89, 89, 0.14);
}
.img-box{
width: 100%;
margin-bottom: 20px;
}
.img-box image{
display: block;
width: 100%;
border-radius: 8rpx;
}
.area {
display: flex;
align-items: center;
justify-content: space-between;
margin: 16rpx 0;
}
.name {
width: 67%;
overflow : hidden;
display: -webkit-box;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
}
.num {
color: #666666;
font-size: 24rpx;
}
/*.img-box text{*/
/*font-size: 28rpx;*/
/*line-height: 1;*/
/*}*/
\ No newline at end of file
... ...
/**
* 瀑布流组件
*/
Component({
properties: {
intervalWidth: {
type: String,
value: "20rpx"
}
},
data: {
items: [],
stopMasonry: false
},
methods: {
/**
* 批量添加元素
*
* @param {Array} items - 新增的元素数组
*/
append(items) {
if (Object.prototype.toString.call(items) !=='[object Array]') {
console.error("[masonry]参数类型错误,渲染失败");
return false;
}
this.setData({
stopMasonry: false
})
return this._refresh(items);
},
/**
* 批量删除瀑布流中的元素
*
* @param {Number} start - 开始下标
* @param {Number} end - 结束下标
*/
delete(start, end) {
const { items } = this.data;
if (start < end && start < items.length - 1) {
let len = end- start;
let newItems = items.splice(start, len);
this._refresh(newItems)
} else {
console.error("[masonry]初始下标异常,删除失败!");
}
},
/**
* 更新数组中的某个元素
*
* @param {Object} newItem - 修改后的元素
* @param {Number} index - 需要更新的数组下标
*/
updateItem(newItem, index) {
const { items } = this.data;
if (index <= items.length - 1) {
this.setData({
items: [
...items.slice(0, index),
Object.assign(items[index], newItem),
...items.slice(index + 1)
]
})
} else {
console.error("[masonry]下标越界,修改失败!");
}
},
/**
* 删除瀑布流中的某个元素
*
* @param {Number} index - 数组下标
*/
deleteItem(index) {
const { items } = this.data;
if (index <= items.length - 1) {
let newItems = items.splice(index, 1);
this._refresh(newItems)
} else {
console.error("[masonry]下标越界,删除失败!");
}
},
/**
* 刷新瀑布流
*
* @param {Array} items - 参与渲染的元素数组
*/
start(items) {
if (Object.prototype.toString.call(items) !=='[object Array]') {
console.error("[masonry]参数类型错误,渲染失败");
return false;
}
this.setData({
items: [],
stopMasonry: false
})
return this._refresh(items);
},
/**
* 停止渲染瀑布流
*/
stop() {
this.setData({
stopMasonry: true,
items: []
})
},
/**
* 刷新瀑布流
*
* @param {Array} items - 参与渲染的元素数组
*/
_refresh(items) {
const query = wx.createSelectorQuery().in(this)
this.columnNodes = query.selectAll('#left-col-inner, #right-col-inner')
return new Promise((resolve, reject) => {
this._render(items, 0, () => {
resolve()
})
})
},
/**
* 渲染函数
*
* @param {Array} items - 正在渲染的数组
* @param {Number} i - 当前渲染元素的下标
* @param {Function} onComplete - 完成后的回调函数
*/
_render (items, i, onComplete) {
if (items.length > i && !this.data.stopMasonry) {
this.columnNodes.boundingClientRect().exec(arr => {
const item = items[i]
const rects = arr[0]
const leftColHeight = rects[0].height
const rightColHeight = rects[1].height
this.setData({
items: [...this.data.items, {
...item,
columnPosition: leftColHeight <= rightColHeight ? 'left' : 'right'
}]
}, () => {
this._render(items, ++i, onComplete)
})
})
} else {
onComplete && onComplete()
}
}
}
});
... ...
{
"component": true,
"componentGenerics": {
"masonry-item": true
}
}
... ...
<view class="masonry-list">
<view class="masonry-list-left" style="{{ 'margin-right:' + intervalWidth }}">
<view id="left-col-inner">
<block wx:for="{{items}}" wx:key="{{item.id}}">
<masonry-item wx:if="{{item.columnPosition === 'left'}}" item="{{item}}" class="masonry-item1"></masonry-item>
</block>
</view>
</view>
<view class="masonry-list-right">
<view id="right-col-inner">
<block wx:for="{{items}}" wx:key="{{item.id}}">
<masonry-item wx:if="{{item.columnPosition === 'right'}}" item="{{item}}" class="masonry-item2"></masonry-item>
</block>
</view>
</view>
</view>
... ...
.masonry-list {
width: 100%;
display: flex;
box-sizing: border-box;
}
.masonry-list-left, .masonry-list-right {
flex: 1;
display: flex;
flex-direction: column;
}
.masonry-item1:nth-child(odd) image{
height: 420rpx;
}
.masonry-item1:nth-child(even) image{
height: 336rpx;
}
.masonry-item2:nth-child(odd) image{
height: 336rpx;
}
.masonry-item2:nth-child(even) image{
height: 420rpx;
}
\ No newline at end of file
... ...
... ... @@ -2,25 +2,36 @@
//获取应用实例
const app = getApp()
import mock from './mock.js'//拿到的数据
Page({
data: {
items: mock,
slide: [{image: '../../images/banner.png'}, {image: '../../images/banner.png'}],
images: [{src:'../../images/duantu@2x.png',text:'短途郊游'},
{src:'../../images/changtu@2x.png',text:'长途旅游'},
{src:'../../images/finecanting@2x.png',text:'Fine Dining 餐厅'},
{src:'../../images/huwai@2x.png',text:'户外运动'},
{src:'../../images/juhui@2x.png',text:'聚会'},
{src:'../../images/yinyuejie@2x.png',text:'音乐节'},
{src:'../../images/dianying@2x.png',text:'电影'},
{src:'../../images/qingshe@2x.png',text:'轻奢餐厅'},
{src:'../../images/zhanlan@2x.png',text:'展览'},
{src:'../../images/wutaiju@2x.png',text:'舞台剧'},
images: [{src: '../../images/duantu@2x.png', text: '短途郊游'},
{src: '../../images/changtu@2x.png', text: '长途旅游'},
{src: '../../images/finecanting@2x.png', text: 'Fine Dining 餐厅'},
{src: '../../images/huwai@2x.png', text: '户外运动'},
{src: '../../images/juhui@2x.png', text: '聚会'},
{src: '../../images/yinyuejie@2x.png', text: '音乐节'},
{src: '../../images/dianying@2x.png', text: '电影'},
{src: '../../images/qingshe@2x.png', text: '轻奢餐厅'},
{src: '../../images/zhanlan@2x.png', text: '展览'},
{src: '../../images/wutaiju@2x.png', text: '舞台剧'},
],
banner: [{image: '../../images/banner.png'}, {image: '../../images/b1@2x (1).png'}, {image: '../../images/b1@2x (2).png'}, {image: '../../images/banner.png'}],
currentBannerIndex:0,
motto: 'Hello World',
userInfo: {},
hasUserInfo: false,
canIUse: wx.canIUse('button.open-type.getUserInfo')
},
bannerChange(e){
// console.log(e,'current', current);
const current = e.detail.current;
this.setData({currentBannerIndex: current})
},
//事件处理函数
bindViewTap: function () {
wx.navigateTo({
... ... @@ -28,39 +39,25 @@ Page({
})
},
onLoad: function () {
if (app.globalData.userInfo) {
this.setData({
userInfo: app.globalData.userInfo,
hasUserInfo: true
})
} else if (this.data.canIUse) {
// 由于 getUserInfo 是网络请求,可能会在 Page.onLoad 之后才返回
// 所以此处加入 callback 以防止这种情况
app.userInfoReadyCallback = res => {
this.setData({
userInfo: res.userInfo,
hasUserInfo: true
})
}
} else {
// 在没有 open-type=getUserInfo 版本的兼容处理
wx.getUserInfo({
success: res => {
app.globalData.userInfo = res.userInfo
this.setData({
userInfo: res.userInfo,
hasUserInfo: true
})
}
})
}
this._doRefreshMasonry(this.data.items)
},
onReachBottom: function () {
this._doAppendMasonry(this.data.items)
},
getUserInfo: function (e) {
console.log(e)
app.globalData.userInfo = e.detail.userInfo
this.setData({
userInfo: e.detail.userInfo,
hasUserInfo: true
_doRefreshMasonry(items) {
this.masonryListComponent = this.selectComponent('#masonry');
this.masonryListComponent.start(items).then(() => {
console.log('refresh completed')
})
}
},
_doAppendMasonry(items) {
this.masonryListComponent = this.selectComponent('#masonry')
// 获取接口数据后使用瀑布流组件append方法,当append完成后调用then,是否可触底价在的标志位可以在这里处理
this.masonryListComponent.append(items).then(() => {
console.log('refresh completed,加载更多')
})
},
})
... ...
{
"navigationBarTitleText": "火柴西路"
"navigationBarTitleText": "火柴西路",
"enablePullDownRefresh": false,
"usingComponents": {
"masonry": "../components/masonry/masonry",
"img-box": "../components/img-box/img-box"
}
}
\ No newline at end of file
... ...
<!--index.wxml-->
<view class="container">
<!--swiper-->
<view class="head">
<view class="position">
<view class="left">
... ... @@ -24,6 +25,7 @@
</swiper>
</view>
<!--导航-->
<view class="padding-box">
<view class="navigator-box">
<view class="img-box" wx:for="{{images}}" wx:key="index">
... ... @@ -32,4 +34,72 @@
</view>
</view>
</view>
<view class="area-box">
<image src="../../images/haowai@2x.png"></image>
<text>奥拉维尔·埃利亚松北京首展</text>
</view>
<view class="tandian-box">
<view class="left">
<image src="../../images/tandian@2x.png"></image>
<text>探店途中</text>
</view>
<view class="right">
<text>查看更多</text>
<image src="../../images/arrow@2x.png"></image>
</view>
</view>
<!--swiper-->
<view class='people_box rel bb1'>
<!--<scroll-view scroll-x class='scroll_view'>-->
<!--<view class="people_list_box">-->
<!--<view class='people_list' wx:for='{{banner}}' wx:key='index'-->
<!--data-index="{{index}}" bindtap="goPeopleDetail" data-id="{{item.user_id}}">-->
<!--<image src="{{item.image}}"></image>-->
<!--<text>Opera Bombana 2018.4.28</text>-->
<!--</view>-->
<!--</view>-->
<!--</scroll-view>-->
<swiper class="bannerBox" autoplay="false" interval="3000" duration="1000" indicator-dots="true"
previous-margin="50rpx" next-margin="50rpx" bindchange="bannerChange" current="{{index}}">
<block wx:for="{{banner}}" wx:key="index">
<swiper-item>
<div class="fix pl5 pr5 box_bb">
<!--<navigator url="">-->
<image class="banner mt10 {{currentBannerIndex==index?'active':''}}" src="{{item.image}}" mode="aspectFill" />
<!--</navigator>-->
</div>
</swiper-item>
</block>
</swiper>
<div class="bannerDots flex_c abs">
<div class="dot {{currentBannerIndex==index?'active':''}}" wx:for="{{banner}}" wx:key="index"></div>
</div>
</view>
<!--足迹-->
<view class="record-box">
<image src="../../images/zuji@2x.png"></image>
<text>他们的足迹</text>
</view>
<!--瀑布流-->
<view class="masonry-box">
<masonry generic:masonry-item="img-box" id="masonry" interval-width="20rpx"></masonry>
</view>
<!--swiper-->
<!--<view class="banner-box">-->
<!--<swiper indicator-dots="{{true}}"-->
<!--autoplay="{{true}}" interval="3000" duration="1000">-->
<!--<block wx:for="{{banner}}" wx:key="index">-->
<!--<navigator url="{{item.url}}" hover-class="navigator-hover">-->
<!--<swiper-item class="banner-item">-->
<!--<image src="{{item.image}}" class="slide-image"/>-->
<!--</swiper-item>-->
<!--</navigator>-->
<!--</block>-->
<!--</swiper>-->
<!--</view>-->
</view>
... ...
/**index.wxss**/
.userinfo {
display: flex;
flex-direction: column;
align-items: center;
}
.userinfo-avatar {
width: 128rpx;
height: 128rpx;
margin: 20rpx;
border-radius: 50%;
}
.userinfo-nickname {
color: #aaa;
}
.usermotto {
margin-top: 200px;
}
.position {
width: 100%;
display: flex;
... ... @@ -126,4 +150,235 @@ swiper {
.img-box .text {
font-size: 18rpx;
color: #333333;
}
.area-box {
padding: 0 20rpx;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
display: flex;
align-items: center;
border-top: 1rpx solid #EBEBEB;
border-bottom: 1rpx solid #EBEBEB;
padding-bottom: 6rpx;
}
.area-box image {
width: 110rpx;
height: 54rpx;
margin-right: 6rpx;
}
.area-box text {
color:#1E1E1E;
font-size: 24rpx;
}
.tandian-box {
display: flex;
align-items: center;
justify-content: space-between;
padding: 24rpx 20rpx;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.tandian-box .left, .tandian-box .right{
display: flex;
align-items: center;
text-align: center;
}
.tandian-box .left image {
width: 50rpx;
height: 32rpx;
margin-right: 6rpx;
}
.tandian-box .left text {
color:#191919;
font-size: 30rpx;
}
.tandian-box .right image{
width: 14rpx;
height: 24rpx;
}
.tandian-box .right text{
color:#666666;
font-size: 26rpx;
margin-right: 10rpx;
}
.banner-box {
width: 100%;
padding: 0 96rpx;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.banner-box swiper {
height: 304rpx;
}
.banner-item {
border-radius: 10rpx;
}
.people_box {
box-sizing: border-box;
padding: 0rpx 36rpx 22rpx 36rpx;
border-bottom: 1rpx solid #EBEBEB;
}
.people_list_box {
display: flex;
overflow-x: scroll;
display: -webkit-box;
-webkit-overflow-scrolling: touch;
/* width: 1440rpx; */
}
.people_list {
display:flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
width: 558rpx;
height: 304rpx;
/* height: 360rpx; */
/* background: rgba(255, 255, 255, 1); */
background-color: #FAFAFA;
border-radius: 10rpx;
/* box-shadow: 0rpx 10rpx 20rpx 0rpx rgba(7, 63, 40, 0.1); */
/* padding: 15rpx; */
font-size: 28rpx;
color: #292525;
text-align: center;
margin-right: 28rpx;
}
.people_list image {
width: 100%;
height: 100%;
margin-bottom: 38rpx;
/*padding: 32rpx 0;*/
}
.people_list text {
width: 100%;
text-align: left;
color:#333333;
font-size: 24rpx;
}
.scroll_view{
/* height: 285rpx; */
/*white-space:nowrap;*/
}
/*banner start*/
.bannerBox{
height: 208px;
}
.banner{
overflow: hidden;
width: 558rpx;
height: 304rpx;
transition: transform 500ms;
transform: scale(0.95,0.9); /* 因为非主图看不清,所以可以变形处理 */
border-radius: 8px;
box-shadow: 0px 6px 10px 0px rgba(179,154,139,1);
}
.banner.active{
transform: scale(1,1);
}
.bannerDots{
width: 100%;
left: 0;
bottom: 40px;
height: 6px;
}
.dot{
width: 6px;
height: 6px;
margin: 0 3px;
border-radius: 3px;
background-color: #fff;
}
.dot.active{
width: 15px;
background-color: #7090E8;
}
.fix {
zoom: 1;
}
.fix:after {
display: table;
content: "";
clear: both;
}
.pl5 {
padding-left: 5px;
}
.pr5 {
padding-right: 5px;
}
.box_bb {
box-sizing: border-box;
}
.flex_c {
/* 水平居中*/
display: flex;
justify-content: center;
}
.abs {
position: absolute;
}
.rel {
position: relative;
}
.bb1 {
border-bottom: 1px solid #F6F8FC;
}
.mt10 {
margin-top: 10px;
}
/*banner end*/
.record-box {
display: flex;
align-items: center;
padding: 18rpx 20rpx;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.record-box image {
margin-right: 6rpx;
width: 34rpx;
height: 46rpx;
}
.record-box text {
color: #191919;
font-size: 30rpx;
}
/*.imgs-box {*/
/*width: 100%;*/
/*display: flex;*/
/*flex-wrap: wrap;*/
/*}*/
/*.imgs-box .list{*/
/*width: 340rpx;*/
/*height: 150rpx;*/
/*column-count: 2; !*设置列数*!*/
/*column-gap:2rpx;*/
/*}*/
/*.imgs-box .list image {*/
/*width: 100%;*/
/*height: 100%;*/
/*}*/
.masonry-box {
padding: 0 20rpx;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
\ No newline at end of file
... ...
export default [
{
"id": "5ad7074126c624525b157f16",
"name": "\uD83D\uDCCD上海热门榜第一<红盔甲>\uD83E\uDD90朋友~小龙虾约不约\uD83E\uDD17️",
"desc": "",
"comments": 0,
"enabled": true,
"infavs": false,
"inlikes": false,
"level": 2,
"likes": 274,
"share_count": 0,
"share_link": "https://www.xiaohongshu.com/discovery/item/5ad7074126c624525b157f16",
"title": "\uD83D\uDCCD上海热门榜第一<红盔甲>\uD83E\uDD90朋友~小龙虾约不约\uD83E\uDD17️",
"type": "normal",
"user": {
"followed": false,
"images": "https://img.xiaohongshu.com/avatar/5a338565b46c5d3d9b3ba58d.jpg@80w_80h_90q_1e_1c_1x.jpg",
"nickname": "Aileen楠楠猪\uD83D\uDC37",
"red_official_verified": false,
"userid": "56d399954775a75816a29d1f",
"avatar": '../../images/personal_seled.png'
},
"recommend": {
"desc": "",
"icon": "",
"type": "selected",
"target_id": "",
"target_name": "",
"track_id": "tselected@5addaa8e3032681d56e377b3"
},
"fav_count": 0,
"images_list": [
{
"height": 960,
"width": 1280,
"url": "http://ci.xiaohongshu.com/d4dc922a-7005-45a9-8cb3-741b8e103af7@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/d4dc922a-7005-45a9-8cb3-741b8e103af7"
},
{
"height": 960,
"width": 1280,
"url": "http://ci.xiaohongshu.com/d7b57964-6b5b-4f68-9417-0f39f2e445c4@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/d7b57964-6b5b-4f68-9417-0f39f2e445c4"
},
{
"height": 960,
"width": 1280,
"url": "http://ci.xiaohongshu.com/009a91e8-1e92-4ea6-aa19-adf4e31712b4@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/009a91e8-1e92-4ea6-aa19-adf4e31712b4"
},
{
"height": 1278,
"width": 1280,
"url": "http://ci.xiaohongshu.com/44987af4-6f5d-445d-8771-f93c7b176f06@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/44987af4-6f5d-445d-8771-f93c7b176f06"
},
{
"height": 1280,
"width": 960,
"url": "http://ci.xiaohongshu.com/2c01659c-b0df-4b7b-8c5e-88c8baf8e288@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/2c01659c-b0df-4b7b-8c5e-88c8baf8e288"
},
{
"height": 960,
"width": 1280,
"url": "http://ci.xiaohongshu.com/b1626a15-bff7-4885-abda-29df8d8ec90c@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/b1626a15-bff7-4885-abda-29df8d8ec90c"
},
{
"height": 1280,
"width": 960,
"url": "http://ci.xiaohongshu.com/9810b7ec-6217-4383-8d75-d8c92f008063@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/9810b7ec-6217-4383-8d75-d8c92f008063"
},
{
"height": 960,
"width": 1280,
"url": "http://ci.xiaohongshu.com/1728f4a4-0bc0-4b25-bc75-2a4e1b42fc9f@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/1728f4a4-0bc0-4b25-bc75-2a4e1b42fc9f"
},
{
"height": 852,
"width": 1138,
"url": "http://ci.xiaohongshu.com/76ec1cc1-6c70-4eda-8814-decd83079080@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/76ec1cc1-6c70-4eda-8814-decd83079080"
}
],
"is_goods_note": true,
"model_type": "note",
"cursor_score": "1524476557.9900",
"newest_comments": [],
"read_count": 0,
"relatedgoods_list": [],
"video_id": ""
},
{
"id": "5ad5a4c1798e2b35b35fb2f1",
"name": "上海美食探店|隐匿于九江路的小众咖啡厅",
"desc": "",
"comments": 0,
"enabled": true,
"infavs": false,
"inlikes": false,
"level": 4,
"likes": 7,
"share_count": 0,
"share_link": "https://www.xiaohongshu.com/discovery/item/5ad5a4c1798e2b35b35fb2f1",
"title": "上海美食探店|隐匿于九江路的小众咖啡厅",
"type": "normal",
"user": {
"followed": false,
"images": "https://img.xiaohongshu.com/avatar/59f51a73b46c5d0d17c4d9c4.jpg@80w_80h_90q_1e_1c_1x.jpg",
"nickname": "要做正能量的糖糖",
"red_official_verified": false,
"userid": "586e67746a6a6937f1de620a",
"avatar": '../../images/personal_seled.png'
},
"recommend": {
"desc": "",
"icon": "",
"type": "selected",
"target_id": "",
"target_name": "",
"track_id": "tselected@5addaa8e3032681d56e377b3"
},
"fav_count": 0,
"images_list": [
{
"height": 1024,
"width": 768,
"url": "http://ci.xiaohongshu.com/bd3201f8-ee5f-416a-b22c-d25e218cdaba@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/bd3201f8-ee5f-416a-b22c-d25e218cdaba"
},
{
"height": 497,
"width": 661,
"url": "http://ci.xiaohongshu.com/3c62c054-1016-4138-99b7-2914822bb322@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/3c62c054-1016-4138-99b7-2914822bb322"
},
{
"height": 992,
"width": 744,
"url": "http://ci.xiaohongshu.com/5bac8017-10fe-41d4-b601-c13b0d220726@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/5bac8017-10fe-41d4-b601-c13b0d220726"
},
{
"height": 768,
"width": 1024,
"url": "http://ci.xiaohongshu.com/c6d5767d-716e-4bf0-a2be-c0ec64778c4d@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/c6d5767d-716e-4bf0-a2be-c0ec64778c4d"
},
{
"height": 810,
"width": 810,
"url": "http://ci.xiaohongshu.com/e2df1e4e-65c8-409d-81f6-02e6eac08e34@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/e2df1e4e-65c8-409d-81f6-02e6eac08e34"
},
{
"height": 1620,
"width": 1215,
"url": "http://ci.xiaohongshu.com/10becd5b-e2a5-46a5-a327-71c597833777@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/10becd5b-e2a5-46a5-a327-71c597833777"
},
{
"height": 744,
"width": 992,
"url": "http://ci.xiaohongshu.com/2efdf78f-cf8b-4cd0-bb9c-bbbfacd4f330@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/2efdf78f-cf8b-4cd0-bb9c-bbbfacd4f330"
},
{
"height": 810,
"width": 810,
"url": "http://ci.xiaohongshu.com/5d3f726a-d644-46b6-807e-dba6a9786e21@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/5d3f726a-d644-46b6-807e-dba6a9786e21"
},
{
"height": 999,
"width": 749,
"url": "http://ci.xiaohongshu.com/b9122b1c-f4ae-448f-a639-e21cf4d29c1c@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/b9122b1c-f4ae-448f-a639-e21cf4d29c1c"
}
],
"is_goods_note": false,
"model_type": "note",
"cursor_score": "1524476557.9800",
"newest_comments": [],
"read_count": 0,
"relatedgoods_list": [],
"video_id": ""
},
{
"id": "5ac0ffdf19f7161416faad3d",
"name": "上海 | 魔都颜值最高+最好吃下午茶推荐☕️方大同+孙俪同款",
"desc": "",
"comments": 0,
"enabled": true,
"infavs": false,
"inlikes": false,
"level": 2,
"likes": 25,
"share_count": 0,
"share_link": "https://www.xiaohongshu.com/discovery/item/5ac0ffdf19f7161416faad3d",
"title": "上海 | 魔都颜值最高+最好吃下午茶推荐☕️方大同+孙俪同款",
"type": "normal",
"user": {
"followed": false,
"images": "https://img.xiaohongshu.com/avatar/5a83a5e1d2c8a5581331e509.jpg@80w_80h_90q_1e_1c_1x.jpg",
"nickname": "Laglacee_Irene",
"red_official_verified": false,
"userid": "59e88b4c11be10262a3d455b",
"avatar": '../../images/personal_seled.png'
},
"recommend": {
"desc": "",
"icon": "",
"type": "selected",
"target_id": "",
"target_name": "",
"track_id": "tselected@5addaa8e3032681d56e377b3"
},
"fav_count": 0,
"images_list": [
{
"height": 529,
"width": 529,
"url": "http://ci.xiaohongshu.com/6822b946-8ffd-4631-b641-0820484c416d@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/6822b946-8ffd-4631-b641-0820484c416d"
},
{
"height": 643,
"width": 859,
"url": "http://ci.xiaohongshu.com/9f58f90c-3528-419c-9e4f-e7c4f647f831@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/9f58f90c-3528-419c-9e4f-e7c4f647f831"
},
{
"height": 720,
"width": 962,
"url": "http://ci.xiaohongshu.com/672482f8-8c54-41c8-9524-900c5a3e244d@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/672482f8-8c54-41c8-9524-900c5a3e244d"
},
{
"height": 1280,
"width": 1280,
"url": "http://ci.xiaohongshu.com/89df80a7-2a88-474c-9fd8-00fcd2cab006@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/89df80a7-2a88-474c-9fd8-00fcd2cab006"
},
{
"height": 350,
"width": 468,
"url": "http://ci.xiaohongshu.com/ce23ff81-d7b1-450d-8ca4-c1442ee6a13a@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/ce23ff81-d7b1-450d-8ca4-c1442ee6a13a"
},
{
"height": 680,
"width": 679,
"url": "http://ci.xiaohongshu.com/e7b81e29-fa19-4b7f-b2f1-82b4be6996a4@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/e7b81e29-fa19-4b7f-b2f1-82b4be6996a4"
},
{
"height": 746,
"width": 750,
"url": "http://ci.xiaohongshu.com/72dd817f-b0a2-4dc1-aded-0622960ee011@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/72dd817f-b0a2-4dc1-aded-0622960ee011"
},
{
"height": 444,
"width": 444,
"url": "http://ci.xiaohongshu.com/653e0844-d84a-4afc-b64e-f3b9c8e9762d@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/653e0844-d84a-4afc-b64e-f3b9c8e9762d"
}
],
"is_goods_note": true,
"model_type": "note",
"cursor_score": "1524476557.9700",
"newest_comments": [],
"read_count": 0,
"relatedgoods_list": [],
"video_id": ""
},
{
"id": "5ac8d25b14b84e2dcf0efcc9",
"name": "上海探店| 魔都必打卡的八家网红店合集 超详细 不踩雷\uD83C\uDF1F",
"desc": "",
"comments": 0,
"enabled": true,
"infavs": false,
"inlikes": false,
"level": 4,
"likes": 21,
"share_count": 0,
"share_link": "https://www.xiaohongshu.com/discovery/item/5ac8d25b14b84e2dcf0efcc9",
"title": "上海探店| 魔都必打卡的八家网红店合集 超详细 不踩雷\uD83C\uDF1F",
"type": "normal",
"user": {
"followed": false,
"images": "https://img.xiaohongshu.com/avatar/5ac5695ab46c5d569d515fa2.jpg@80w_80h_90q_1e_1c_1x.jpg",
"nickname": "elvaic",
"red_official_verified": false,
"userid": "581a129782ec395c1433490f",
"avatar": '../../images/personal_seled.png'
},
"recommend": {
"desc": "",
"icon": "",
"type": "selected",
"target_id": "",
"target_name": "",
"track_id": "tselected@5addaa8e3032681d56e377b3"
},
"fav_count": 0,
"images_list": [
{
"height": 750,
"width": 750,
"url": "http://ci.xiaohongshu.com/b432ef4e-7dbe-4f90-ba94-af3f3f2f9a04@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/b432ef4e-7dbe-4f90-ba94-af3f3f2f9a04"
},
{
"height": 691,
"width": 690,
"url": "http://ci.xiaohongshu.com/31cafa3e-c4b4-4958-87fa-787ee07a71b9@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/31cafa3e-c4b4-4958-87fa-787ee07a71b9"
},
{
"height": 693,
"width": 693,
"url": "http://ci.xiaohongshu.com/0bce5c24-ebaa-4e0a-98b4-afe32ddd7cb7@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/0bce5c24-ebaa-4e0a-98b4-afe32ddd7cb7"
},
{
"height": 693,
"width": 693,
"url": "http://ci.xiaohongshu.com/c3542988-df52-453a-904b-461596bbd2de@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/c3542988-df52-453a-904b-461596bbd2de"
},
{
"height": 688,
"width": 688,
"url": "http://ci.xiaohongshu.com/93cd59d2-3a4e-4b27-aa85-38ec037cc5fb@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/93cd59d2-3a4e-4b27-aa85-38ec037cc5fb"
},
{
"height": 691,
"width": 691,
"url": "http://ci.xiaohongshu.com/ac84ac2a-803b-4a34-b1c0-04830be9881d@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/ac84ac2a-803b-4a34-b1c0-04830be9881d"
},
{
"height": 689,
"width": 689,
"url": "http://ci.xiaohongshu.com/3f3e1ec7-808b-4ae0-ae52-7c2ec2355f28@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/3f3e1ec7-808b-4ae0-ae52-7c2ec2355f28"
},
{
"height": 694,
"width": 693,
"url": "http://ci.xiaohongshu.com/18e32878-4fc5-4e11-a4a4-4216bacdf668@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/18e32878-4fc5-4e11-a4a4-4216bacdf668"
},
{
"height": 692,
"width": 692,
"url": "http://ci.xiaohongshu.com/f169f168-62fa-42ff-a2cc-3baf6e431c8d@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/f169f168-62fa-42ff-a2cc-3baf6e431c8d"
}
],
"is_goods_note": false,
"model_type": "note",
"cursor_score": "1524476557.9600",
"newest_comments": [],
"read_count": 0,
"relatedgoods_list": [],
"video_id": ""
},
{
"id": "5adb487deb00f30950913cee",
"name": "【上海特色网红店】穿旗袍喝下午茶⭐️坐时光机穿越回到老上海",
"desc": "",
"comments": 0,
"enabled": true,
"infavs": false,
"inlikes": false,
"level": 2,
"likes": 12,
"share_count": 0,
"share_link": "https://www.xiaohongshu.com/discovery/item/5adb487deb00f30950913cee",
"title": "【上海特色网红店】穿旗袍喝下午茶⭐️坐时光机穿越回到老上海",
"type": "normal",
"user": {
"followed": false,
"images": "https://img.xiaohongshu.com/avatar/5ad5d8f6d2c8a57655b2c2a8.jpg@80w_80h_90q_1e_1c_1x.jpg",
"nickname": "小豬大行动",
"red_official_verified": false,
"userid": "5743b6436a6a691adcef6f12",
"avatar": '../../images/personal_seled.png'
},
"recommend": {
"desc": "",
"icon": "",
"type": "selected",
"target_id": "",
"target_name": "",
"track_id": "tselected@5addaa8e3032681d56e377b3"
},
"fav_count": 0,
"images_list": [
{
"height": 1280,
"width": 960,
"url": "http://ci.xiaohongshu.com/0d56e6dd-2e53-4539-8a10-7fe42208bbcf@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/0d56e6dd-2e53-4539-8a10-7fe42208bbcf"
},
{
"height": 854,
"width": 1140,
"url": "http://ci.xiaohongshu.com/56467a60-6be5-479e-94a9-135d1a82dce1@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/56467a60-6be5-479e-94a9-135d1a82dce1"
},
{
"height": 790,
"width": 1054,
"url": "http://ci.xiaohongshu.com/b2cfd6d6-5fc0-4c90-b157-334471e8b94a@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/b2cfd6d6-5fc0-4c90-b157-334471e8b94a"
},
{
"height": 904,
"width": 1206,
"url": "http://ci.xiaohongshu.com/281ee0f9-2577-44a7-a7e7-adc6d5ba51b2@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/281ee0f9-2577-44a7-a7e7-adc6d5ba51b2"
},
{
"height": 960,
"width": 720,
"url": "http://ci.xiaohongshu.com/d4afd6a7-da74-4c3f-abae-b70bf4f0b137@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/d4afd6a7-da74-4c3f-abae-b70bf4f0b137"
}
],
"is_goods_note": false,
"model_type": "note",
"cursor_score": "1524476557.9500",
"newest_comments": [],
"read_count": 0,
"relatedgoods_list": [],
"video_id": ""
},
{
"id": "5ab91431eb00f30657a0b9a1",
"name": "上海美食•魔都晶品除了火烧云还能吃啥\uD83D\uDD25凑凑火锅·茶憩",
"desc": "",
"comments": 0,
"enabled": true,
"infavs": false,
"inlikes": false,
"level": 4,
"likes": 15,
"share_count": 0,
"share_link": "https://www.xiaohongshu.com/discovery/item/5ab91431eb00f30657a0b9a1",
"title": "上海美食•魔都晶品除了火烧云还能吃啥\uD83D\uDD25凑凑火锅·茶憩",
"type": "normal",
"user": {
"followed": false,
"images": "https://img.xiaohongshu.com/avatar/5a6df431d1d3b9265e0a5fd1.jpg@80w_80h_90q_1e_1c_1x.jpg",
"nickname": "Banna",
"red_official_verified": false,
"userid": "5a6df39611be1042466ac2f6",
"avatar": '../../images/personal_seled.png'
},
"recommend": {
"desc": "",
"icon": "",
"type": "selected",
"target_id": "",
"target_name": "",
"track_id": "tselected@5addaa8e3032681d56e377b3"
},
"fav_count": 0,
"images_list": [
{
"height": 1114,
"width": 1114,
"url": "http://ci.xiaohongshu.com/f4ef2193-44fe-4b9a-8814-1b97ef033301@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/f4ef2193-44fe-4b9a-8814-1b97ef033301"
},
{
"height": 958,
"width": 1280,
"url": "http://ci.xiaohongshu.com/537204b8-2086-426a-9fd5-a08b4e7d41ce@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/537204b8-2086-426a-9fd5-a08b4e7d41ce"
},
{
"height": 1280,
"width": 960,
"url": "http://ci.xiaohongshu.com/6f7f76aa-aa2c-4074-9842-2303a3307e8c@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/6f7f76aa-aa2c-4074-9842-2303a3307e8c"
},
{
"height": 1280,
"width": 960,
"url": "http://ci.xiaohongshu.com/d77791cd-202f-4245-b04e-adb10bfb9c5a@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/d77791cd-202f-4245-b04e-adb10bfb9c5a"
},
{
"height": 1280,
"width": 960,
"url": "http://ci.xiaohongshu.com/b34b89a6-8f5e-4c23-8fed-328b3ab231a9@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/b34b89a6-8f5e-4c23-8fed-328b3ab231a9"
},
{
"height": 960,
"width": 1280,
"url": "http://ci.xiaohongshu.com/d3928ed9-d5bd-4476-8e4b-92add152d469@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/d3928ed9-d5bd-4476-8e4b-92add152d469"
},
{
"height": 1000,
"width": 1000,
"url": "http://ci.xiaohongshu.com/a61b3e2c-4e4a-42ff-8ffb-80fb772b5ec7@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/a61b3e2c-4e4a-42ff-8ffb-80fb772b5ec7"
},
{
"height": 960,
"width": 1280,
"url": "http://ci.xiaohongshu.com/0bb963b6-d786-47ef-97ef-f5c7747cb218@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/0bb963b6-d786-47ef-97ef-f5c7747cb218"
}
],
"is_goods_note": true,
"model_type": "note",
"cursor_score": "1524476557.9400",
"newest_comments": [],
"read_count": 0,
"relatedgoods_list": [],
"video_id": ""
},
{
"id": "5ac8557dfb2a36383f9853bb",
"name": "上海旅游攻略",
"desc": "",
"comments": 0,
"enabled": true,
"infavs": false,
"inlikes": false,
"level": 4,
"likes": 11,
"share_count": 0,
"share_link": "https://www.xiaohongshu.com/discovery/item/5ac8557dfb2a36383f9853bb",
"title": "上海旅游攻略",
"type": "normal",
"user": {
"followed": false,
"images": "https://img.xiaohongshu.com/avatar/5abf50ef14de41239b1af4b1.jpg@80w_80h_90q_1e_1c_1x.jpg",
"nickname": "曼瑶儿",
"red_official_verified": false,
"userid": "5933f7195e87e71bc406c572",
"avatar": '../../images/personal_seled.png'
},
"recommend": {
"desc": "",
"icon": "",
"type": "selected",
"target_id": "",
"target_name": "",
"track_id": "tselected@5addaa8e3032681d56e377b3"
},
"fav_count": 0,
"images_list": [
{
"height": 958,
"width": 1280,
"url": "http://ci.xiaohongshu.com/38f7a64d-9ff9-4904-9926-d49922789806@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/38f7a64d-9ff9-4904-9926-d49922789806"
},
{
"height": 670,
"width": 894,
"url": "http://ci.xiaohongshu.com/700237c3-6474-4b46-9401-fb8338929305@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/700237c3-6474-4b46-9401-fb8338929305"
},
{
"height": 958,
"width": 1280,
"url": "http://ci.xiaohongshu.com/ca1eac85-eba7-4609-bab2-3f8d27909f55@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/ca1eac85-eba7-4609-bab2-3f8d27909f55"
},
{
"height": 970,
"width": 970,
"url": "http://ci.xiaohongshu.com/3bd17fef-b5c5-47e9-9030-3114c2438c29@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/3bd17fef-b5c5-47e9-9030-3114c2438c29"
},
{
"height": 958,
"width": 1280,
"url": "http://ci.xiaohongshu.com/f239702b-6881-46b0-b4b8-7daf509e93cc@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/f239702b-6881-46b0-b4b8-7daf509e93cc"
},
{
"height": 974,
"width": 974,
"url": "http://ci.xiaohongshu.com/c2ac25b5-8cdb-4357-9ac3-5d901bf4353a@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/c2ac25b5-8cdb-4357-9ac3-5d901bf4353a"
},
{
"height": 958,
"width": 1280,
"url": "http://ci.xiaohongshu.com/70c77213-20fe-457d-aa97-d762f3012b74@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/70c77213-20fe-457d-aa97-d762f3012b74"
},
{
"height": 958,
"width": 1280,
"url": "http://ci.xiaohongshu.com/3f25960f-8591-44bd-af9e-099f212d881a@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/3f25960f-8591-44bd-af9e-099f212d881a"
},
{
"height": 960,
"width": 1280,
"url": "http://ci.xiaohongshu.com/c3e33384-7d28-4b7a-9787-14db6f4a98cf@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/c3e33384-7d28-4b7a-9787-14db6f4a98cf"
}
],
"is_goods_note": false,
"model_type": "note",
"cursor_score": "1524476557.9300",
"newest_comments": [],
"read_count": 0,
"relatedgoods_list": [],
"video_id": ""
},
{
"id": "5ac82a04798e2b51c81d93c1",
"name": "小长假在这儿浪|假期第一天二刷迪士尼 你不得不知的超强攻略",
"desc": "",
"comments": 0,
"enabled": true,
"infavs": false,
"inlikes": false,
"level": 2,
"likes": 106,
"share_count": 0,
"share_link": "https://www.xiaohongshu.com/discovery/item/5ac82a04798e2b51c81d93c1",
"title": "小长假在这儿浪|假期第一天二刷迪士尼 你不得不知的超强攻略",
"type": "normal",
"user": {
"followed": false,
"images": "https://img.xiaohongshu.com/avatar/5ab278c2b46c5d4a0dcf8f47.jpg@80w_80h_90q_1e_1c_1x.jpg",
"nickname": "小二月半+",
"red_official_verified": false,
"userid": "59ffe73e4eacab5273ca6dad",
"avatar": '../../images/personal_seled.png'
},
"recommend": {
"desc": "",
"icon": "",
"type": "selected",
"target_id": "",
"target_name": "",
"track_id": "tselected@5addaa8e3032681d56e377b3"
},
"fav_count": 0,
"images_list": [
{
"height": 852,
"width": 1138,
"url": "http://ci.xiaohongshu.com/2b6d1916-6289-45ad-b78a-9da962cce47e@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/2b6d1916-6289-45ad-b78a-9da962cce47e"
},
{
"height": 1080,
"width": 1080,
"url": "http://ci.xiaohongshu.com/6dc2793a-b869-4f99-becc-12ac4bb3c60d@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/6dc2793a-b869-4f99-becc-12ac4bb3c60d"
},
{
"height": 1080,
"width": 1080,
"url": "http://ci.xiaohongshu.com/ea2104d0-c9cf-420d-a8f5-173543f5678c@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/ea2104d0-c9cf-420d-a8f5-173543f5678c"
},
{
"height": 1280,
"width": 960,
"url": "http://ci.xiaohongshu.com/abd1da46-da34-4049-a2da-109326e937d2@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/abd1da46-da34-4049-a2da-109326e937d2"
},
{
"height": 853,
"width": 1138,
"url": "http://ci.xiaohongshu.com/78c3969b-8790-491c-b091-71446a1dfe7f@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/78c3969b-8790-491c-b091-71446a1dfe7f"
},
{
"height": 1280,
"width": 960,
"url": "http://ci.xiaohongshu.com/88fcda4a-6da3-4314-9c13-55377b626640@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/88fcda4a-6da3-4314-9c13-55377b626640"
},
{
"height": 1280,
"width": 960,
"url": "http://ci.xiaohongshu.com/e73d74fd-7610-4984-9b18-36ff5620ad4b@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/e73d74fd-7610-4984-9b18-36ff5620ad4b"
},
{
"height": 960,
"width": 1280,
"url": "http://ci.xiaohongshu.com/e89efd65-51b7-4546-81a7-e95b983ad9d7@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/e89efd65-51b7-4546-81a7-e95b983ad9d7"
},
{
"height": 504,
"width": 674,
"url": "http://ci.xiaohongshu.com/a0e113f5-5ee3-4939-8b0b-e776c313c322@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/a0e113f5-5ee3-4939-8b0b-e776c313c322"
}
],
"is_goods_note": false,
"model_type": "note",
"cursor_score": "1524476557.9200",
"newest_comments": [],
"read_count": 0,
"relatedgoods_list": [],
"video_id": ""
},
{
"id": "5acb118e26c62476a597e8ab",
"name": "\uD83C\uDF08️上海攻略",
"desc": "",
"comments": 0,
"enabled": true,
"infavs": false,
"inlikes": false,
"level": 2,
"likes": 12,
"share_count": 0,
"share_link": "https://www.xiaohongshu.com/discovery/item/5acb118e26c62476a597e8ab",
"title": "\uD83C\uDF08️上海攻略",
"type": "normal",
"user": {
"followed": false,
"images": "https://img.xiaohongshu.com/avatar/5a941dce4eacab4a18b7f43d.jpg@80w_80h_90q_1e_1c_1x.jpg",
"nickname": "JoyJing-",
"red_official_verified": false,
"userid": "5a941dce4eacab4a18b7f43d",
"avatar": '../../images/personal_seled.png'
},
"recommend": {
"desc": "",
"icon": "",
"type": "selected",
"target_id": "",
"target_name": "",
"track_id": "tselected@5addaa8e3032681d56e377b3"
},
"fav_count": 0,
"images_list": [
{
"height": 1028,
"width": 771,
"url": "http://ci.xiaohongshu.com/fb2b905d-08d8-4942-8335-adbae835e56e@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/fb2b905d-08d8-4942-8335-adbae835e56e"
},
{
"height": 1333,
"width": 1000,
"url": "http://ci.xiaohongshu.com/c6d513cb-2bdd-4abe-9a18-76a25e840ca1@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/c6d513cb-2bdd-4abe-9a18-76a25e840ca1"
},
{
"height": 1333,
"width": 1000,
"url": "http://ci.xiaohongshu.com/a30fd095-d858-44d0-a68c-d9d57f93dd53@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/a30fd095-d858-44d0-a68c-d9d57f93dd53"
},
{
"height": 1333,
"width": 1000,
"url": "http://ci.xiaohongshu.com/68b237d0-5ca5-40f6-9673-a9c13df1d9c8@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/68b237d0-5ca5-40f6-9673-a9c13df1d9c8"
},
{
"height": 1333,
"width": 1000,
"url": "http://ci.xiaohongshu.com/f9feb744-987e-406a-aaea-6bf4e6b061b2@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/f9feb744-987e-406a-aaea-6bf4e6b061b2"
},
{
"height": 750,
"width": 750,
"url": "http://ci.xiaohongshu.com/d3abb003-52fe-4ab3-aff7-8687d96352df@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/d3abb003-52fe-4ab3-aff7-8687d96352df"
},
{
"height": 1000,
"width": 1333,
"url": "http://ci.xiaohongshu.com/3ad68741-84a3-491f-b969-06de4d58188b@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/3ad68741-84a3-491f-b969-06de4d58188b"
},
{
"height": 1333,
"width": 1000,
"url": "http://ci.xiaohongshu.com/740e3492-59b7-4588-835b-c237ae941704@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/740e3492-59b7-4588-835b-c237ae941704"
},
{
"height": 1333,
"width": 1000,
"url": "http://ci.xiaohongshu.com/999fd3a7-e9db-4642-aed3-9ade95d0926b@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/999fd3a7-e9db-4642-aed3-9ade95d0926b"
}
],
"is_goods_note": false,
"model_type": "note",
"cursor_score": "1524476557.9100",
"newest_comments": [],
"read_count": 0,
"relatedgoods_list": [],
"video_id": ""
},
{
"id": "5ac778647ee0a91bfd30495d",
"name": "上海四日游超强攻略\uD83D\uDC63了解一下...",
"desc": "",
"comments": 0,
"enabled": true,
"infavs": false,
"inlikes": false,
"level": 2,
"likes": 30,
"share_count": 0,
"share_link": "https://www.xiaohongshu.com/discovery/item/5ac778647ee0a91bfd30495d",
"title": "上海四日游超强攻略\uD83D\uDC63了解一下...",
"type": "normal",
"user": {
"followed": false,
"images": "https://img.xiaohongshu.com/avatar/58c6468802f37d6fbba41650.jpg@80w_80h_90q_1e_1c_1x.jpg",
"nickname": "小可心er",
"red_official_verified": false,
"userid": "58c645d550c4b42c222afcd3",
"avatar": '../../images/personal_seled.png'
},
"recommend": {
"desc": "",
"icon": "",
"type": "selected",
"target_id": "",
"target_name": "",
"track_id": "tselected@5addaa8e3032681d56e377b3"
},
"fav_count": 0,
"images_list": [
{
"height": 1280,
"width": 1280,
"url": "http://ci.xiaohongshu.com/4b1c381b-4202-46d7-9244-592fe9ed0b88@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/4b1c381b-4202-46d7-9244-592fe9ed0b88"
},
{
"height": 1280,
"width": 1280,
"url": "http://ci.xiaohongshu.com/98537c2d-30bc-4f99-81a6-c623e5dc8243@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/98537c2d-30bc-4f99-81a6-c623e5dc8243"
},
{
"height": 1280,
"width": 1280,
"url": "http://ci.xiaohongshu.com/581548c4-4474-4b9e-b46d-96af8ab84123@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/581548c4-4474-4b9e-b46d-96af8ab84123"
},
{
"height": 1280,
"width": 1280,
"url": "http://ci.xiaohongshu.com/241336bc-aa6e-4ca0-a914-0543c2793d2d@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/241336bc-aa6e-4ca0-a914-0543c2793d2d"
},
{
"height": 1280,
"width": 1280,
"url": "http://ci.xiaohongshu.com/c3e5152f-f72e-422c-86d4-6e8b01b1d4d8@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/c3e5152f-f72e-422c-86d4-6e8b01b1d4d8"
},
{
"height": 1280,
"width": 1280,
"url": "http://ci.xiaohongshu.com/fe313c72-d9c3-429f-a5f2-df998dd2f7ff@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/fe313c72-d9c3-429f-a5f2-df998dd2f7ff"
},
{
"height": 1280,
"width": 1280,
"url": "http://ci.xiaohongshu.com/46d88a63-b6aa-44e0-b8ee-cf901b0a36cc@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/46d88a63-b6aa-44e0-b8ee-cf901b0a36cc"
},
{
"height": 1280,
"width": 1280,
"url": "http://ci.xiaohongshu.com/bd43d285-7ca3-407d-aae8-788713b8c18b@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/bd43d285-7ca3-407d-aae8-788713b8c18b"
},
{
"height": 1280,
"width": 1280,
"url": "http://ci.xiaohongshu.com/9b836984-b92f-4e62-9b33-b3282e7b7117@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/9b836984-b92f-4e62-9b33-b3282e7b7117"
}
],
"is_goods_note": false,
"model_type": "note",
"cursor_score": "1524476557.9000",
"newest_comments": [],
"read_count": 0,
"relatedgoods_list": [],
"video_id": ""
},
{
"id": "5ada924fc4463f19bd8c7996",
"name": "2⃣️上海探店| 适合闺蜜网红约会拍照的下午茶咖啡店&美食",
"desc": "",
"comments": 0,
"enabled": true,
"infavs": false,
"inlikes": false,
"level": 4,
"likes": 9,
"share_count": 0,
"share_link": "https://www.xiaohongshu.com/discovery/item/5ada924fc4463f19bd8c7996",
"title": "2⃣️上海探店| 适合闺蜜网红约会拍照的下午茶咖啡店&美食",
"type": "normal",
"user": {
"followed": false,
"images": "https://img.xiaohongshu.com/avatar/5ac7443214de4152f51af486.jpg@80w_80h_90q_1e_1c_1x.jpg",
"nickname": "_大线团儿Eunice",
"red_official_verified": false,
"userid": "56594d1ce00dd878385ea6d9",
"avatar": '../../images/personal_seled.png'
},
"recommend": {
"desc": "",
"icon": "",
"type": "selected",
"target_id": "",
"target_name": "",
"track_id": "tselected@5addaa8e3032681d56e377b3"
},
"fav_count": 0,
"images_list": [
{
"height": 1088,
"width": 1088,
"url": "http://ci.xiaohongshu.com/9701bbc3-d785-4387-b9f8-65b1cea0d277@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/9701bbc3-d785-4387-b9f8-65b1cea0d277"
},
{
"height": 1074,
"width": 1074,
"url": "http://ci.xiaohongshu.com/8bed6dd9-64e3-4de5-b0ae-510b61ee6f2c@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/8bed6dd9-64e3-4de5-b0ae-510b61ee6f2c"
},
{
"height": 1012,
"width": 1012,
"url": "http://ci.xiaohongshu.com/678e4fa2-1173-4a21-8d7a-53fe53f7e1c7@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/678e4fa2-1173-4a21-8d7a-53fe53f7e1c7"
},
{
"height": 1280,
"width": 960,
"url": "http://ci.xiaohongshu.com/27df6918-d109-4208-8a2c-1b26a69a55f4@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/27df6918-d109-4208-8a2c-1b26a69a55f4"
},
{
"height": 1012,
"width": 1012,
"url": "http://ci.xiaohongshu.com/c1670ae6-f851-4d42-a60b-b9cf6cb7d764@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/c1670ae6-f851-4d42-a60b-b9cf6cb7d764"
},
{
"height": 1096,
"width": 1096,
"url": "http://ci.xiaohongshu.com/ac6f32bd-7f69-43bf-83de-6a678ef75c43@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/ac6f32bd-7f69-43bf-83de-6a678ef75c43"
},
{
"height": 1232,
"width": 1232,
"url": "http://ci.xiaohongshu.com/d572fca6-82a8-4c00-bd5f-1b08a1c8e20b@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/d572fca6-82a8-4c00-bd5f-1b08a1c8e20b"
},
{
"height": 1002,
"width": 1002,
"url": "http://ci.xiaohongshu.com/12ef44ba-ce23-4ddf-8609-a2dd70412b5f@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/12ef44ba-ce23-4ddf-8609-a2dd70412b5f"
},
{
"height": 960,
"width": 1280,
"url": "http://ci.xiaohongshu.com/6b7ed9b2-d86a-4107-8c2b-1547117b7275@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/6b7ed9b2-d86a-4107-8c2b-1547117b7275"
}
],
"is_goods_note": false,
"model_type": "note",
"cursor_score": "1524476557.8900",
"newest_comments": [],
"read_count": 0,
"relatedgoods_list": [],
"video_id": ""
},
{
"id": "5ad3791efb2a3620000cb676",
"name": "\uD83D\uDC83\uD83D\uDC83\uD83D\uDC83上海吃吃逛逛~\uD83E\uDD80️拔草蟹黄鱼➕红宝石蛋糕\uD83C\uDF70",
"desc": "",
"comments": 0,
"enabled": true,
"infavs": false,
"inlikes": false,
"level": 4,
"likes": 13,
"share_count": 0,
"share_link": "https://www.xiaohongshu.com/discovery/item/5ad3791efb2a3620000cb676",
"title": "\uD83D\uDC83\uD83D\uDC83\uD83D\uDC83上海吃吃逛逛~\uD83E\uDD80️拔草蟹黄鱼➕红宝石蛋糕\uD83C\uDF70",
"type": "normal",
"user": {
"followed": false,
"images": "https://img.xiaohongshu.com/avatar/5acc5364d2c8a546051e4e50.jpg@80w_80h_90q_1e_1c_1x.jpg",
"nickname": "嗲妹",
"red_official_verified": false,
"userid": "582537a934609436faaea5b0",
"avatar": '../../images/personal_seled.png'
},
"recommend": {
"desc": "",
"icon": "",
"type": "selected",
"target_id": "",
"target_name": "",
"track_id": "tselected@5addaa8e3032681d56e377b3"
},
"fav_count": 0,
"images_list": [
{
"height": 1280,
"width": 1280,
"url": "http://ci.xiaohongshu.com/81e8ccb3-38bc-4749-b6e5-8fca980aecaa@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/81e8ccb3-38bc-4749-b6e5-8fca980aecaa"
},
{
"height": 1280,
"width": 1280,
"url": "http://ci.xiaohongshu.com/d7f4aa64-b61f-43f6-93cb-13322acdd398@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/d7f4aa64-b61f-43f6-93cb-13322acdd398"
},
{
"height": 960,
"width": 1280,
"url": "http://ci.xiaohongshu.com/c87e3b83-12a9-471d-a57f-d7487ef97b41@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/c87e3b83-12a9-471d-a57f-d7487ef97b41"
},
{
"height": 1280,
"width": 1280,
"url": "http://ci.xiaohongshu.com/c0e06166-37f6-436a-b47f-13e786c5742f@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/c0e06166-37f6-436a-b47f-13e786c5742f"
}
],
"is_goods_note": false,
"model_type": "note",
"cursor_score": "1524476557.8800",
"newest_comments": [],
"read_count": 0,
"relatedgoods_list": [],
"video_id": ""
},
{
"id": "5abc54ed937426332f503f8b",
"name": "魔都网红酒店·上海外滩悦榕庄vs上海丽思卡尔顿酒店",
"desc": "",
"comments": 0,
"enabled": true,
"infavs": false,
"inlikes": false,
"level": 4,
"likes": 27,
"share_count": 0,
"share_link": "https://www.xiaohongshu.com/discovery/item/5abc54ed937426332f503f8b",
"title": "魔都网红酒店·上海外滩悦榕庄vs上海丽思卡尔顿酒店",
"type": "normal",
"user": {
"followed": false,
"images": "https://img.xiaohongshu.com/avatar/5ab8da1e14de41371ad56eb3.jpg@80w_80h_90q_1e_1c_1x.jpg",
"nickname": "攀攀ppluxury",
"red_official_verified": false,
"userid": "5ab8d8d111be10546b747b76",
"avatar": '../../images/personal_seled.png'
},
"recommend": {
"desc": "",
"icon": "",
"type": "selected",
"target_id": "",
"target_name": "",
"track_id": "tselected@5addaa8e3032681d56e377b3"
},
"fav_count": 0,
"images_list": [
{
"height": 800,
"width": 1066,
"url": "http://ci.xiaohongshu.com/23eb475c-887b-4817-9cb1-5dbfc9df6c60@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/23eb475c-887b-4817-9cb1-5dbfc9df6c60"
},
{
"height": 800,
"width": 800,
"url": "http://ci.xiaohongshu.com/6dba4a01-af69-47cb-a56b-c1a8c3789816@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/6dba4a01-af69-47cb-a56b-c1a8c3789816"
},
{
"height": 800,
"width": 801,
"url": "http://ci.xiaohongshu.com/7f874606-fb32-4e8b-abdd-39ab278c0213@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/7f874606-fb32-4e8b-abdd-39ab278c0213"
},
{
"height": 800,
"width": 1066,
"url": "http://ci.xiaohongshu.com/0f0c34ff-f590-4153-bad8-5037f631183f@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/0f0c34ff-f590-4153-bad8-5037f631183f"
},
{
"height": 800,
"width": 1066,
"url": "http://ci.xiaohongshu.com/aafe9aec-e898-4076-904c-bed547589685@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/aafe9aec-e898-4076-904c-bed547589685"
},
{
"height": 960,
"width": 1280,
"url": "http://ci.xiaohongshu.com/7a78e57d-7d15-4dd7-940d-a3ca78a43a1e@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/7a78e57d-7d15-4dd7-940d-a3ca78a43a1e"
},
{
"height": 800,
"width": 800,
"url": "http://ci.xiaohongshu.com/8231deeb-0b6a-4d3c-a847-30e607c44a7e@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/8231deeb-0b6a-4d3c-a847-30e607c44a7e"
},
{
"height": 750,
"width": 750,
"url": "http://ci.xiaohongshu.com/c8c929ca-d483-479c-86df-422a2568104d@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/c8c929ca-d483-479c-86df-422a2568104d"
},
{
"height": 1080,
"width": 1080,
"url": "http://ci.xiaohongshu.com/c6893728-960e-4575-83a7-0abf6bc35aec@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/c6893728-960e-4575-83a7-0abf6bc35aec"
}
],
"is_goods_note": false,
"model_type": "note",
"cursor_score": "1524476557.8700",
"newest_comments": [],
"read_count": 0,
"relatedgoods_list": [],
"video_id": ""
},
{
"id": "5abed5e94b88450f722aef14",
"name": "上海魔都旅游超详细攻略干货分享\uD83E\uDD29吃喝玩乐性价比推荐\uD83D\uDE0D",
"desc": "",
"comments": 0,
"enabled": true,
"infavs": false,
"inlikes": false,
"level": 4,
"likes": 323,
"share_count": 0,
"share_link": "https://www.xiaohongshu.com/discovery/item/5abed5e94b88450f722aef14",
"title": "上海魔都旅游超详细攻略干货分享\uD83E\uDD29吃喝玩乐性价比推荐\uD83D\uDE0D",
"type": "normal",
"user": {
"followed": false,
"images": "https://img.xiaohongshu.com/avatar/5ad83e61d2c8a52c59b2c39a.jpg@80w_80h_90q_1e_1c_1x.jpg",
"nickname": "VIVIK",
"red_official_verified": false,
"userid": "5772a5c982ec3910928a6222",
"avatar": '../../images/personal_seled.png'
},
"recommend": {
"desc": "",
"icon": "",
"type": "selected",
"target_id": "",
"target_name": "",
"track_id": "tselected@5addaa8e3032681d56e377b3"
},
"fav_count": 0,
"images_list": [
{
"height": 1280,
"width": 1280,
"url": "http://ci.xiaohongshu.com/a5fbf0ea-154a-4c68-86db-579903f98fe9@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/a5fbf0ea-154a-4c68-86db-579903f98fe9"
},
{
"height": 1280,
"width": 1280,
"url": "http://ci.xiaohongshu.com/9f6b9e98-f9c6-4dee-a9b7-25f011db9960@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/9f6b9e98-f9c6-4dee-a9b7-25f011db9960"
},
{
"height": 1280,
"width": 1280,
"url": "http://ci.xiaohongshu.com/6f5f85f5-c4a9-4dc4-9bbc-e0484cc02c99@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/6f5f85f5-c4a9-4dc4-9bbc-e0484cc02c99"
},
{
"height": 1280,
"width": 1280,
"url": "http://ci.xiaohongshu.com/03d050b5-c24f-4635-ad88-ee66e70c3b94@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/03d050b5-c24f-4635-ad88-ee66e70c3b94"
},
{
"height": 1280,
"width": 1280,
"url": "http://ci.xiaohongshu.com/dabfc9a5-6f86-4c30-9c5f-8a06e83b6c6d@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/dabfc9a5-6f86-4c30-9c5f-8a06e83b6c6d"
},
{
"height": 1280,
"width": 1280,
"url": "http://ci.xiaohongshu.com/db7add7e-5962-4f81-bc49-4ae4ba61f8bc@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/db7add7e-5962-4f81-bc49-4ae4ba61f8bc"
},
{
"height": 1280,
"width": 1280,
"url": "http://ci.xiaohongshu.com/0dcc517b-adc9-45a6-9ac5-12627c12e119@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/0dcc517b-adc9-45a6-9ac5-12627c12e119"
},
{
"height": 1280,
"width": 1280,
"url": "http://ci.xiaohongshu.com/c984a692-2529-4873-a672-656831017eae@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/c984a692-2529-4873-a672-656831017eae"
},
{
"height": 1280,
"width": 1280,
"url": "http://ci.xiaohongshu.com/8abbe1d2-73e1-491c-ae9d-572a84ce0c5d@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/8abbe1d2-73e1-491c-ae9d-572a84ce0c5d"
}
],
"is_goods_note": false,
"model_type": "note",
"cursor_score": "1524476557.8600",
"newest_comments": [],
"read_count": 0,
"relatedgoods_list": [],
"video_id": ""
},
{
"id": "5adc6954910cf64c05ce8896",
"name": "\uD83D\uDC9B上海美食 | 鹿角巷的黑糖鹿丸鲜奶真的好喝!",
"desc": "",
"comments": 0,
"enabled": true,
"infavs": false,
"inlikes": false,
"level": 4,
"likes": 4,
"share_count": 0,
"share_link": "https://www.xiaohongshu.com/discovery/item/5adc6954910cf64c05ce8896",
"title": "\uD83D\uDC9B上海美食 | 鹿角巷的黑糖鹿丸鲜奶真的好喝!",
"type": "normal",
"user": {
"followed": false,
"images": "https://img.xiaohongshu.com/avatar/5ad993d2b46c5d6752fc73f1.jpg@80w_80h_90q_1e_1c_1x.jpg",
"nickname": "元走走",
"red_official_verified": false,
"userid": "57ab241c34609441e8a83170",
"avatar": '../../images/personal_seled.png'
},
"recommend": {
"desc": "",
"icon": "",
"type": "selected",
"target_id": "",
"target_name": "",
"track_id": "tselected@5addaa8e3032681d56e377b3"
},
"fav_count": 0,
"images_list": [
{
"height": 1242,
"width": 1242,
"url": "http://ci.xiaohongshu.com/5653051f-ee9f-4370-948d-b361eb533e79@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/5653051f-ee9f-4370-948d-b361eb533e79"
},
{
"height": 1058,
"width": 1058,
"url": "http://ci.xiaohongshu.com/d02b6137-3a0c-4b52-802a-ec1d7e967614@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/d02b6137-3a0c-4b52-802a-ec1d7e967614"
},
{
"height": 1018,
"width": 1018,
"url": "http://ci.xiaohongshu.com/a85b7815-33c4-496d-be45-239f7862afea@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/a85b7815-33c4-496d-be45-239f7862afea"
},
{
"height": 1280,
"width": 1280,
"url": "http://ci.xiaohongshu.com/355738da-c468-4c8d-9dfb-6cfb8c14879e@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/355738da-c468-4c8d-9dfb-6cfb8c14879e"
},
{
"height": 1280,
"width": 1280,
"url": "http://ci.xiaohongshu.com/f4502baf-a1c2-46f2-93bb-4a7122b6437f@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/f4502baf-a1c2-46f2-93bb-4a7122b6437f"
},
{
"height": 1242,
"width": 1242,
"url": "http://ci.xiaohongshu.com/5d4b5ebe-8506-49f7-9534-d3e5aab4e65e@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/5d4b5ebe-8506-49f7-9534-d3e5aab4e65e"
},
{
"height": 895,
"width": 896,
"url": "http://ci.xiaohongshu.com/f80b7cb3-eb34-486a-a335-8c83ac7f74ed@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/f80b7cb3-eb34-486a-a335-8c83ac7f74ed"
}
],
"is_goods_note": false,
"model_type": "note",
"cursor_score": "1524476557.8500",
"newest_comments": [],
"read_count": 0,
"relatedgoods_list": [],
"video_id": ""
},
{
"id": "5ad6e3454b88457edb45dd61",
"name": "#上海探店# ins超火的罐子蛋糕,有颜任性会告白!",
"desc": "",
"comments": 0,
"enabled": true,
"infavs": false,
"inlikes": false,
"level": 2,
"likes": 42,
"share_count": 0,
"share_link": "https://www.xiaohongshu.com/discovery/item/5ad6e3454b88457edb45dd61",
"title": "#上海探店# ins超火的罐子蛋糕,有颜任性会告白!",
"type": "normal",
"user": {
"followed": false,
"images": "https://img.xiaohongshu.com/avatar/5936545cb46c5d5b06249408.jpg@80w_80h_90q_1e_1c_1x.jpg",
"nickname": "魔都探索队",
"red_official_verified": false,
"userid": "571d07fa4775a75101fe0b88",
"avatar": '../../images/personal_seled.png'
},
"recommend": {
"desc": "",
"icon": "",
"type": "selected",
"target_id": "",
"target_name": "",
"track_id": "tselected@5addaa8e3032681d56e377b3"
},
"fav_count": 0,
"images_list": [
{
"height": 427,
"width": 570,
"url": "http://ci.xiaohongshu.com/7952b4d7-9d17-4057-bdc2-9a080e8095ee@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/7952b4d7-9d17-4057-bdc2-9a080e8095ee"
},
{
"height": 427,
"width": 570,
"url": "http://ci.xiaohongshu.com/cfe91eab-5a3f-4222-a792-f7f2f6e91e31@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/cfe91eab-5a3f-4222-a792-f7f2f6e91e31"
},
{
"height": 427,
"width": 570,
"url": "http://ci.xiaohongshu.com/9cea6fd8-810c-45e4-af25-b4d671b99a1b@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/9cea6fd8-810c-45e4-af25-b4d671b99a1b"
},
{
"height": 1280,
"width": 1280,
"url": "http://ci.xiaohongshu.com/24601a05-1df9-4556-bd3c-a304388b9056@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/24601a05-1df9-4556-bd3c-a304388b9056"
},
{
"height": 427,
"width": 570,
"url": "http://ci.xiaohongshu.com/99c48f74-df0d-4af1-813b-73badb76a13b@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/99c48f74-df0d-4af1-813b-73badb76a13b"
},
{
"height": 854,
"width": 640,
"url": "http://ci.xiaohongshu.com/3cfb924b-1a90-4207-a6d9-db72a59ae5da@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/3cfb924b-1a90-4207-a6d9-db72a59ae5da"
},
{
"height": 427,
"width": 570,
"url": "http://ci.xiaohongshu.com/f6c03dac-0176-4500-80d4-a8a43547a762@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/f6c03dac-0176-4500-80d4-a8a43547a762"
},
{
"height": 427,
"width": 570,
"url": "http://ci.xiaohongshu.com/d37bd91a-6987-4722-a32b-ebb4504868c1@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/d37bd91a-6987-4722-a32b-ebb4504868c1"
},
{
"height": 472,
"width": 631,
"url": "http://ci.xiaohongshu.com/53439d50-bd82-4ad2-aff3-16516dc4762a@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/53439d50-bd82-4ad2-aff3-16516dc4762a"
}
],
"is_goods_note": false,
"model_type": "note",
"cursor_score": "1524476557.8400",
"newest_comments": [],
"read_count": 0,
"relatedgoods_list": [],
"video_id": ""
},
{
"id": "5acb72d9798e2b51bd1d2314",
"name": "#上海# 门都找不到的神秘料理店,不预定就不给吃",
"desc": "",
"comments": 0,
"enabled": true,
"infavs": false,
"inlikes": false,
"level": 4,
"likes": 48,
"share_count": 0,
"share_link": "https://www.xiaohongshu.com/discovery/item/5acb72d9798e2b51bd1d2314",
"title": "#上海# 门都找不到的神秘料理店,不预定就不给吃",
"type": "normal",
"user": {
"followed": false,
"images": "https://img.xiaohongshu.com/avatar/5936545cb46c5d5b06249408.jpg@80w_80h_90q_1e_1c_1x.jpg",
"nickname": "魔都探索队",
"red_official_verified": false,
"userid": "571d07fa4775a75101fe0b88",
"avatar": '../../images/personal_seled.png'
},
"recommend": {
"desc": "",
"icon": "",
"type": "selected",
"target_id": "",
"target_name": "",
"track_id": "tselected@5addaa8e3032681d56e377b3"
},
"fav_count": 0,
"images_list": [
{
"height": 854,
"width": 1140,
"url": "http://ci.xiaohongshu.com/5e2fbaae-15f2-408c-9a67-30c6854f6dff@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/5e2fbaae-15f2-408c-9a67-30c6854f6dff"
},
{
"height": 854,
"width": 1140,
"url": "http://ci.xiaohongshu.com/29505310-ba3f-44ec-80fa-be34b2e76eb1@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/29505310-ba3f-44ec-80fa-be34b2e76eb1"
},
{
"height": 699,
"width": 699,
"url": "http://ci.xiaohongshu.com/00764f73-dac2-43f2-ad6d-a767934b7148@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/00764f73-dac2-43f2-ad6d-a767934b7148"
},
{
"height": 854,
"width": 1140,
"url": "http://ci.xiaohongshu.com/dc9e73fb-6d70-4780-86f3-be43be5538f3@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/dc9e73fb-6d70-4780-86f3-be43be5538f3"
},
{
"height": 1018,
"width": 1018,
"url": "http://ci.xiaohongshu.com/5cdd45c3-4b74-494c-98ac-3b3191d3cfa9@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/5cdd45c3-4b74-494c-98ac-3b3191d3cfa9"
},
{
"height": 1070,
"width": 802,
"url": "http://ci.xiaohongshu.com/142ed3a1-c7b1-4b96-9c89-9f122895ce3d@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/142ed3a1-c7b1-4b96-9c89-9f122895ce3d"
},
{
"height": 1280,
"width": 960,
"url": "http://ci.xiaohongshu.com/8de1c627-a4a1-4f2b-ac34-77acd86f62a9@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/8de1c627-a4a1-4f2b-ac34-77acd86f62a9"
},
{
"height": 1280,
"width": 960,
"url": "http://ci.xiaohongshu.com/94a0e45b-4125-4cc7-a8f9-3277058abda9@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/94a0e45b-4125-4cc7-a8f9-3277058abda9"
},
{
"height": 1280,
"width": 960,
"url": "http://ci.xiaohongshu.com/be743de5-d03f-4bc5-acd9-ca80279cbfca@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/be743de5-d03f-4bc5-acd9-ca80279cbfca"
}
],
"is_goods_note": false,
"model_type": "note",
"cursor_score": "1524476557.8300",
"newest_comments": [],
"read_count": 0,
"relatedgoods_list": [],
"video_id": ""
},
{
"id": "5ad8869726c624525a156878",
"name": "【上海】适合小姐妹聊天的佛系粤菜只想pick他!",
"desc": "",
"comments": 0,
"enabled": true,
"infavs": false,
"inlikes": false,
"level": 4,
"likes": 255,
"share_count": 0,
"share_link": "https://www.xiaohongshu.com/discovery/item/5ad8869726c624525a156878",
"title": "【上海】适合小姐妹聊天的佛系粤菜只想pick他!",
"type": "normal",
"user": {
"followed": false,
"images": "https://img.xiaohongshu.com/avatar/59ffd260b46c5d4a42f1b371.jpg@80w_80h_90q_1e_1c_1x.jpg",
"nickname": "常靖悦Anny",
"red_official_verified": false,
"userid": "56278f6df53ee036c2de35c5",
"avatar": '../../images/personal_seled.png'
},
"recommend": {
"desc": "",
"icon": "",
"type": "selected",
"target_id": "",
"target_name": "",
"track_id": "tselected@5addaa8e3032681d56e377b3"
},
"fav_count": 0,
"images_list": [
{
"height": 1280,
"width": 960,
"url": "http://ci.xiaohongshu.com/e1f57d05-4306-43fd-af7c-6a5e28779105@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/e1f57d05-4306-43fd-af7c-6a5e28779105"
},
{
"height": 960,
"width": 1280,
"url": "http://ci.xiaohongshu.com/441fdb92-6c30-4779-b4c9-4705be81fb9d@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/441fdb92-6c30-4779-b4c9-4705be81fb9d"
},
{
"height": 960,
"width": 1280,
"url": "http://ci.xiaohongshu.com/b2865bba-6b83-4008-a79c-ab45ab7bd0f0@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/b2865bba-6b83-4008-a79c-ab45ab7bd0f0"
},
{
"height": 960,
"width": 1280,
"url": "http://ci.xiaohongshu.com/cdf18cf0-7fff-41a4-8650-1d090e0d8f92@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/cdf18cf0-7fff-41a4-8650-1d090e0d8f92"
},
{
"height": 960,
"width": 1280,
"url": "http://ci.xiaohongshu.com/a2b0b9a6-ca92-4417-a9b0-47f4e8077e9b@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/a2b0b9a6-ca92-4417-a9b0-47f4e8077e9b"
},
{
"height": 952,
"width": 1270,
"url": "http://ci.xiaohongshu.com/18063624-24ea-4e33-bea0-ef2bcb6d2f1c@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/18063624-24ea-4e33-bea0-ef2bcb6d2f1c"
},
{
"height": 980,
"width": 980,
"url": "http://ci.xiaohongshu.com/df1f6a85-9295-4315-9046-36743942b1ed@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/df1f6a85-9295-4315-9046-36743942b1ed"
},
{
"height": 960,
"width": 1280,
"url": "http://ci.xiaohongshu.com/c8592092-ad5b-446a-880d-011db696bd6d@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/c8592092-ad5b-446a-880d-011db696bd6d"
}
],
"is_goods_note": false,
"model_type": "note",
"cursor_score": "1524476557.8200",
"newest_comments": [],
"read_count": 0,
"relatedgoods_list": [],
"video_id": ""
},
{
"id": "5adae21693742669197f0922",
"name": "7⃣️上海探店| 适合闺蜜网红约会拍照的下午茶咖啡店&美食",
"desc": "",
"comments": 0,
"enabled": true,
"infavs": false,
"inlikes": false,
"level": 4,
"likes": 9,
"share_count": 0,
"share_link": "https://www.xiaohongshu.com/discovery/item/5adae21693742669197f0922",
"title": "7⃣️上海探店| 适合闺蜜网红约会拍照的下午茶咖啡店&美食",
"type": "normal",
"user": {
"followed": false,
"images": "https://img.xiaohongshu.com/avatar/5ac7443214de4152f51af486.jpg@80w_80h_90q_1e_1c_1x.jpg",
"nickname": "_大线团儿Eunice",
"red_official_verified": false,
"userid": "56594d1ce00dd878385ea6d9",
"avatar": '../../images/personal_seled.png'
},
"recommend": {
"desc": "",
"icon": "",
"type": "selected",
"target_id": "",
"target_name": "",
"track_id": "tselected@5addaa8e3032681d56e377b3"
},
"fav_count": 0,
"images_list": [
{
"height": 960,
"width": 1280,
"url": "http://ci.xiaohongshu.com/a85bf650-e90d-44d7-ae98-f54cbcc83718@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/a85bf650-e90d-44d7-ae98-f54cbcc83718"
},
{
"height": 1280,
"width": 960,
"url": "http://ci.xiaohongshu.com/b8ac6856-8224-405e-b8f0-9359d3ac2613@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/b8ac6856-8224-405e-b8f0-9359d3ac2613"
},
{
"height": 960,
"width": 1280,
"url": "http://ci.xiaohongshu.com/0605cfb4-5997-4855-a7d5-7f0f60086302@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/0605cfb4-5997-4855-a7d5-7f0f60086302"
},
{
"height": 960,
"width": 1280,
"url": "http://ci.xiaohongshu.com/72ff5442-4500-4304-8aec-a6ec18888008@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/72ff5442-4500-4304-8aec-a6ec18888008"
},
{
"height": 1280,
"width": 960,
"url": "http://ci.xiaohongshu.com/fdb41f6f-ae7e-4aab-9ab1-d987d5ccb2bb@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/fdb41f6f-ae7e-4aab-9ab1-d987d5ccb2bb"
},
{
"height": 1280,
"width": 960,
"url": "http://ci.xiaohongshu.com/972f1e75-844b-4a96-b831-c6c29105c312@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/972f1e75-844b-4a96-b831-c6c29105c312"
},
{
"height": 960,
"width": 1280,
"url": "http://ci.xiaohongshu.com/fa6ba9bc-f148-4767-b153-e86de54c5d5b@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/fa6ba9bc-f148-4767-b153-e86de54c5d5b"
}
],
"is_goods_note": false,
"model_type": "note",
"cursor_score": "1524476557.8100",
"newest_comments": [],
"read_count": 0,
"relatedgoods_list": [],
"video_id": ""
},
{
"id": "5ada979e74da533a4e2d4846",
"name": "3⃣️上海探店| 适合闺蜜网红约会拍照的下午茶咖啡店&美食",
"desc": "",
"comments": 0,
"enabled": true,
"infavs": false,
"inlikes": false,
"level": 4,
"likes": 9,
"share_count": 0,
"share_link": "https://www.xiaohongshu.com/discovery/item/5ada979e74da533a4e2d4846",
"title": "3⃣️上海探店| 适合闺蜜网红约会拍照的下午茶咖啡店&美食",
"type": "normal",
"user": {
"followed": false,
"images": "https://img.xiaohongshu.com/avatar/5ac7443214de4152f51af486.jpg@80w_80h_90q_1e_1c_1x.jpg",
"nickname": "_大线团儿Eunice",
"red_official_verified": false,
"userid": "56594d1ce00dd878385ea6d9",
"avatar": '../../images/personal_seled.png'
},
"recommend": {
"desc": "",
"icon": "",
"type": "selected",
"target_id": "",
"target_name": "",
"track_id": "tselected@5addaa8e3032681d56e377b3"
},
"fav_count": 0,
"images_list": [
{
"height": 1260,
"width": 944,
"url": "http://ci.xiaohongshu.com/7588c7f3-f3b6-40b8-bf04-87c8c24c3292@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/7588c7f3-f3b6-40b8-bf04-87c8c24c3292"
},
{
"height": 1104,
"width": 1104,
"url": "http://ci.xiaohongshu.com/188a04b3-1fb2-46c2-802c-b781e00baa47@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/188a04b3-1fb2-46c2-802c-b781e00baa47"
},
{
"height": 1208,
"width": 906,
"url": "http://ci.xiaohongshu.com/a7f27bdf-90ac-4a87-8e46-7c5a7c305143@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/a7f27bdf-90ac-4a87-8e46-7c5a7c305143"
},
{
"height": 960,
"width": 1280,
"url": "http://ci.xiaohongshu.com/5a33fbef-5975-4024-8741-bb329cb2194b@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/5a33fbef-5975-4024-8741-bb329cb2194b"
},
{
"height": 960,
"width": 1280,
"url": "http://ci.xiaohongshu.com/5aacf572-1fcf-41fe-adec-a94b4e667abb@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/5aacf572-1fcf-41fe-adec-a94b4e667abb"
},
{
"height": 1280,
"width": 964,
"url": "http://ci.xiaohongshu.com/4518b83d-d272-4f58-815f-e7b9f9baca79@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/4518b83d-d272-4f58-815f-e7b9f9baca79"
},
{
"height": 1096,
"width": 1096,
"url": "http://ci.xiaohongshu.com/f7669187-eb7c-4c8c-bae7-dac9434a6b92@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/f7669187-eb7c-4c8c-bae7-dac9434a6b92"
},
{
"height": 1280,
"width": 960,
"url": "http://ci.xiaohongshu.com/22db3d46-4b58-4097-b491-eae1ef299b42@r_640w_640h.jpg",
"original": "http://ci.xiaohongshu.com/22db3d46-4b58-4097-b491-eae1ef299b42"
}
],
"is_goods_note": false,
"model_type": "note",
"cursor_score": "1524476557.8000",
"newest_comments": [],
"read_count": 0,
"relatedgoods_list": [],
"video_id": ""
}
]
... ...