今日头条新闻
在entry->src->main->module.json5 文件中添加网络请求权限代码如下"requestPermissions": [ {"name": "ohos.permission.INTERNET"} ],
Index.ets
import { HomePage } from "../pages/HomePage"
import { bottomNavigation, NewsType } from "../data/DataHelper"
import { BottomNavigation } from "../model/SystemModel"
import { BottomTabs, BottomTabsTwo, TopTabs } from "../component/TabsNavigation"
@Entry
@Component
struct Index {
@State message: string = 'Hello World'
private controller: TabsController = new TabsController()
build() {
Flex({ direction: FlexDirection.Column, justifyContent: FlexAlign.Center }) {
Row() {
Image($r("app.media.qqNews"))
.aspectRatio(1)
.height(40)
Row() {
Image($r("app.media.sousuo"))
.aspectRatio(1)
.width(20)
Text("12月一批新法规将实施,涉及收入、医疗、住房等")
.fontColor("#666666")
.fontSize(14)
}
.backgroundColor("#10000000")
.borderRadius(20)
.flexGrow(1)
.margin({ left: 10, right: 10 })
.height("100%")
Image($r("app.media.listingContentFill"))
.height(30).aspectRatio(1)
.objectFit(ImageFit.Contain)
}.justifyContent(FlexAlign.Start)
.padding({ left: 10, right: 20, top: 10 })
.width("100%")
.height(50)
Tabs({ controller: this.controller }) {
TabContent() {
HomePage()
}.tabBar("首页")
TabContent() {
HomePage()
}.tabBar("视频")
TabContent() {
HomePage()
}.tabBar("动态")
}.animationDuration(0)
.barHeight(0)
// BottomTabsTwo({ controller: this.controller, height: 80 })
BottomTabs({ controller: this.controller, bottomHeight: 80 })
}
}
}
在entry->src->main->ets 鼠标右键创建一个文件夹Directory,名称为 component,如下图
(1)在component 文件夹下鼠标右键New->ArkTS File 文件,名称为TabsNavigation
(2)编写顶部与导航栏代码,TabsNavigation.ets 代码如下
import { bottomNavigation, NewsType } from '../data/DataHelper';
import { BottomNavigation, TopTabsType } from '../model/SystemModel';
@Component
export struct BottomTabs {
@State bottomTabIndex: number = 0
private controller: TabsController
private bottomHeight: number = 80
private iconData: Array<BottomNavigation> = bottomNavigation
build() {
Grid() {
ForEach(this.iconData, (item: BottomNavigation, index) => {
GridItem() {
Column() {
Row() {
if (this.bottomTabIndex == item.id) {
Image(item.imgChecked)
.width("100%")
.height("100%")
.objectFit(ImageFit.Contain)
.animation({
duration: 100
})
.transition({ type: TransitionType.Insert, scale: { x: 0.3, y: 0.3 } })
.transition({ type: TransitionType.Delete, scale: { x: 0.3, y: 0.3 }, opacity: 0.5 })
} else {
Image(item.image)
.width("90%")
.height("90%")
.objectFit(ImageFit.Contain)
}
}.height("50%")
Text(item.name)
.fontSize(18)
.margin({ top: 5 })
}.width("25%")
}
.onClick(() => {
animateTo({ duration: 100, curve: Curve.Friction }, () => {
this.bottomTabIndex = item.id
this.controller.changeIndex(this.bottomTabIndex)
})
})
.height("100%")
})
}
.height(this.bottomHeight)
.rowsTemplate("1fr")
.columnsGap("1fr".repeat(this.iconData.length))
.width("100%")
}
}
@Component
export struct BottomTabsTwo {
@State bottomTabIndex: number = 0
private controller: TabsController
private Myheight: number = 50
private iconData: Array<BottomNavigation> = bottomNavigation
private MybackgroundColor: string = '#f1f3f5'
build() {
Column() {
Divider().width('100%').color('#e8e8e8').strokeWidth(1)
Grid() {
ForEach(this.iconData, (item: BottomNavigation) => {
GridItem() {
Column() {
Row() {
if (this.bottomTabIndex === item.id) {
Image(item.imgChecked)
// .height(30).width(30)
.width('100%')
.height('100%')
.objectFit(ImageFit.Contain)
.animation({ duration: 1000 })
.transition({ type: TransitionType.Insert, scale: { x: 0.3, y: 0.3 } })
.transition({ type: TransitionType.Delete, scale: { x: 0.3, y: 0.3 }, opacity: 0.5 })
} else {
Image(item.image)
// .height(27).width(27)
.width('90%')
.height('90%')
.objectFit(ImageFit.Contain)
.animation({ duration: 500 })
.transition({ type: TransitionType.Insert, scale: { x: 0.3, y: 0.3 } })
.transition({ type: TransitionType.Delete, scale: { x: 0.3, y: 0.3 }, opacity: 0.3 })
}
}
.height('50%').aspectRatio(1)
Text(item.name)
.fontSize(12)
.fontColor(item.id === this.bottomTabIndex ? '#000' : '#515151')
.margin({ top: 3 })
}
}
.width('100%')
.onClick(() => {
animateTo({
duration: 100,
curve: Curve.EaseIn
}, () => {
this.bottomTabIndex = item.id
this.controller.changeIndex(this.bottomTabIndex)
})
})
}, (item) => item.id.toString())
}
.columnsTemplate('1fr '.repeat(this.iconData.length))
.rowsTemplate('1fr')
.width('100%').height('100%')
}
.width('100%').height(this.Myheight)
.backgroundColor(this.MybackgroundColor)
// .position({ x: 0, y: '100%' })
// .markAnchor({ x: 0, y: 70 })
}
}
@Component
export struct TopTabs {
private tabs: Array<TopTabsType>
build() {
Tabs() {
ForEach(this.tabs, (item: TopTabsType) => {
TabContent(){
}.tabBar(item.name)
})
}
}
}
(1)在entry->src->main->ets->pages 目录下新建一个页面,名称为HomePage,如图
(2)编写新闻页面代码,HomePage.ets 完整代码如下
import router from '@ohos.router';
import NewsItem from "../component/NewsItem"
import { NewsType, testData ,testData2} from "../data/DataHelper"
import { TopTabsType } from "../model/SystemModel"
import { TopTabs } from "../component/TabsNavigation"
import { News } from "../model/NewsModel"
import http from '@ohos.net.http';
@Entry
@Component
export struct HomePage {
@State message: string = 'Hello World'
// private username: string = router.getParams()["username"]
@State newsListInfo: string[] = ["列表一", "列表二", "列表一", "列表二", "列表一", "列表二", "列表一", "列表二", "列表一", "列表二", "列表一", "列表二", "列表一", "列表二", "列表一", "列表二", "列表一", "列表二", "列表一", "列表二", "列表一", "列表二", "列表一", "列表二"]
@State data: Array<News> = []
private tabs: Array<TopTabsType> = NewsType
build() {
// List 列表容器
Column() {
Tabs() {
ForEach(this.tabs, (item: TopTabsType) => {
TabContent() {
List() {
ForEach(this.data, (item: News, index) => {
ListItem() {
NewsItem({newsData:item})
}
})
}
}.tabBar(item.name)
})
}.scrollable(true)
.onChange((index) => {
// this.getHttpData(this.tabs[index].key)
this.parseData(JSON.stringify(testData2))
})
.barMode(BarMode.Scrollable)
.width("100%")
}
}
aboutToAppear() {
this.parseData(JSON.stringify(testData))
// this.getHttpData("top")
}
onPageShow() {
}
parseData(result) {
let apiData = JSON.parse(result).result.data
// let apiData = getData.data.result.data
let data: Array<News> = [];
apiData.forEach((item) => {
let imgList: Array<string> = [];
if (item.thumbnail_pic_s && item.thumbnail_pic_s != "") {
imgList.push(item.thumbnail_pic_s);
}
if (item.thumbnail_pic_s02 && item.thumbnail_pic_s02 != "") {
imgList.push(item.thumbnail_pic_s02);
}
if (item.thumbnail_pic_s03 && item.thumbnail_pic_s03 != "") {
imgList.push(item.thumbnail_pic_s03);
}
data.push(new News(item.uniquekey, item.title, item.date, item.category, null,
imgList, null, item.sourceId, item.author_name, null, item.url, null, null));
})
this.data = data
}
request_url: string = "http://v.juhe.cn/toutiao/index"
getHttpData(type: string) {
let request_url = this.request_url + "?type=" + type + "&key=562022ac0428bb47dacfca9f70260148"
let httpRequest = http.createHttp()
httpRequest.on('headersReceive', (header) => {
console.info('header: ' + JSON.stringify(header));
});
httpRequest.request(request_url, {
method: http.RequestMethod.GET,
header: {
'Content-Type': 'application/json'
},
// extraData: {
// "type": "guonei",
// "page": "1",
// "key": "562022ac0428bb47dacfca9f70260148"
// },
connectTimeout: 60000, // 可选,默认为60s
readTimeout: 60000, // 可选,默认为60s
},
(err, data) => {
if (!err) {
// data.result为http响应内容,可根据业务需要进行解析
console.info('Result:' + data.result);
console.info('code:' + data.responseCode);
// data.header为http响应头,可根据业务需要进行解析
console.info('header:' + JSON.stringify(data.header));
console.info('cookies:' + data.cookies); // 8+
this.parseData(data.result)
//
} else {
console.info('error:' + JSON.stringify(err));
// 当该请求使用完毕时,调用destroy方法主动销毁。
httpRequest.destroy();
}
}
)
}
}
(1)在component文件夹中创建新的ArkTS File文件,名称为NewsItem
(2)NewsItem 代码如下
//新闻列表的布局
import { News } from "../model/NewsModel"
import router from '@ohos.router';
@Component
struct NewsItem {
@ObjectLink newsData: News
build() {
Column() {
if (this.newsData.imgSrc.length == 0) {
Column() {
Text(this.newsData.title)
.fontSize(18)
.maxLines(3)
.textOverflow({ overflow: TextOverflow.Ellipsis })
Blank()
.height(10)
Row() {
Text(this.newsData.source)
.fontSize(14)
.fontColor("#FF989898")
Text(this.newsData.date)
.flexGrow(1)
.width("100%")
.textAlign(TextAlign.Start)
.fontSize(14)
.fontColor("#FF989898")
}
}.alignItems(HorizontalAlign.Start)
} else if (this.newsData.imgSrc.length == 1) {
Row() {
Column() {
Text(this.newsData.title)
.fontSize(16)
.maxLines(3)
.textOverflow({ overflow: TextOverflow.Ellipsis })
Blank()
.height(10)
Row() {
Text(this.newsData.source)
.fontSize(14)
.fontColor("#FF989898")
Text(this.newsData.date)
.flexGrow(1)
.width("100%")
.textAlign(TextAlign.Start)
.fontSize(14)
.fontColor("#FF989898")
}
}.alignItems(HorizontalAlign.Start)
.width("70%")
Image(this.newsData.imgSrc[0])
.objectFit(ImageFit.Cover)
.width("30%")
.height(75)
.borderRadius(5)
}
} else if (this.newsData.imgSrc.length > 1) {
Column() {
Text(this.newsData.title)
.fontSize(18)
.maxLines(3)
.textOverflow({ overflow: TextOverflow.Ellipsis })
Blank()
.height(10)
Row() {
Text(this.newsData.source)
.fontSize(14)
.fontColor("#FF989898")
Text(this.newsData.date)
.flexGrow(1)
.width("100%")
.textAlign(TextAlign.Start)
.fontSize(14)
.fontColor("#FF989898")
}
}.alignItems(HorizontalAlign.Start)
Grid() {
ForEach(this.newsData.imgSrc, (item) => {
GridItem() {
Image(item)
.objectFit(ImageFit.Cover)
.width('100%').height('100%')
.borderRadius(8)
}
})
}
.rowsTemplate("1fr")
.columnsGap(5)
.width("100%")
.aspectRatio(5)
.margin({ top: 10 })
.columnsTemplate(" 1fr ".repeat(this.newsData.imgSrc.length))
}
Divider().width('100%').strokeWidth(1).color("#fff8f1f1")
.margin({ top: 20 })
}.alignItems(HorizontalAlign.Start)
.padding({ top: 10, bottom: 10, left: 10, right: 10 })
.onClick(() => {
router.push({
url: "pages/NewsDetailPage",
params: {
"url": this.newsData.url
}
})
})
}
}
export default NewsItem
(1)在entry->src->main->ets 文件夹下面新建一个目录,名称为model
(2)在model 目录下,新建一个ArkTS File 文件,名称为NewsModel,NewsModel.ets代码如下
let NextId = 0;
//新闻数据的model
@Observed
export class News {
id: string; //id
title: string; //标题
date: string; //日期
category: string; //类别
text: string; //内容文本
imgSrc: Array<string | Resource>; //图片
video: string | Resource; //视频
sourceId: string; //发布者id
source: string; //发布者名称
sourceIcon: string | Resource; //发布者头像
url: string; //网址
favorCount: number; //点赞数
commentCount: number; //评论数
constructor(id: string, title: string, date: string, category: string, text: string, imgSrc: Array<string | Resource>,
video: string | Resource, sourceId: string, source: string, sourceIcon: string | Resource, url: string,
favorCount: number, commentCount: number) {
this.id = id;
this.title = title;
this.date = date;
this.category = category;
this.text = text;
this.imgSrc = imgSrc;
this.video = video;
this.sourceId = sourceId;
this.source = source;
this.sourceIcon = sourceIcon;
this.url = url;
this.favorCount = favorCount;
this.commentCount = commentCount;
}
}
(3)在model目录下,新建一个ArkTS File 文件,名称为SystemModel,SystemModel.ets 代码如下:
export class BottomNavigation {
id: number
name: string | Resource
image: Resource
imgChecked: Resource
constructor(params: {
id: number,
name: string | Resource,
image: Resource,
imgChecked: Resource
}) {
this.id = params.id
this.name = params.name
this.image = params.image
this.imgChecked = params.imgChecked
}
}
export class TopTabsType {
id: number
name: string
tabType: string
key: string
constructor(id: number,
name: string,
tabType: string,
key: string) {
this.id = id
this.name = name
this.tabType = tabType
this.key = key
}
}
(1)在entry->src->main->ets 目录下创建一个data目录
(2)在data目录下创建一个ArkTs File 文件名称为DataHelper
DataHelper.ets代码如下
import { BottomNavigation, TopTabsType } from "../model/SystemModel"
export const bottomNavigation: Array<BottomNavigation> = [
{ id: 0, name: "首页", image: $r("app.media.newspaper"), imgChecked: $r("app.media.newspaper2") },
{ id: 1, name: "视频", image: $r("app.media.bofangFill"), imgChecked: $r("app.media.bofangFill2") },
{ id: 2, name: "动态", image: $r("app.media.rocket"), imgChecked: $r("app.media.rocket2") },
{ id: 3, name: "我的", image: $r("app.media.wodeFill"), imgChecked: $r("app.media.wodeFill2") },]
export const NewsType: Array<TopTabsType> = [
{ "id": 0, "name": "要闻", "tabType": "news", "key": 'top' },
{ "id": 1, "name": "国内", "tabType": "news", "key": 'guonei' },
{ "id": 2, "name": "国际", "tabType": "news", "key": 'guoji' },
{ "id": 3, "name": "娱乐", "tabType": "news", "key": 'yule' },
{ "id": 4, "name": "体育", "tabType": "news", "key": 'tiyu' },
{ "id": 5, "name": "军事", "tabType": "news", "key": 'junshi' },
{ "id": 6, "name": "科技", "tabType": "news", "key": 'keji' },
{ "id": 7, "name": "财经", "tabType": "news", "key": 'caijing' },
{ "id": 8, "name": "时尚", "tabType": "news", "key": 'shishang' },
]
export const testData = {
"reason": "success!",
"result": {
"stat": "1",
"data": [
{
"uniquekey": "abe8a4a1a2477ed7ac4b4f4b751a145a",
"title": "江苏那些未曾消失的老地名",
"date": "2022-10-20 10:19:00",
"category": "头条",
"author_name": "科普社会",
"url": "https:\/\/mini.eastday.com\/mobile\/221020101953481533325.html",
"thumbnail_pic_s": "https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221020\/640x640_6350b0461fb16_mwpm_03201609.jpeg",
"thumbnail_pic_s02": "https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221020\/640x363_6350b0473c060_mwpm_03201609.jpeg",
"thumbnail_pic_s03": "https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221020\/640x393_6350b0483b628_mwpm_03201609.jpeg",
"is_content": "1"
},
{
"uniquekey": "cae28fd1eeafe3ec00971c710a01f95d",
"title": "江苏省少年科学院院士设计建议获省级一等奖",
"date": "2022-10-20 10:19:00",
"category": "头条",
"author_name": "科普社会",
"url": "https:\/\/mini.eastday.com\/mobile\/221020101926072727008.html",
"thumbnail_pic_s": "https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221020\/640x360_6350b02baad15_mwpm_03201609.jpeg",
"thumbnail_pic_s02": "https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221020\/640x480_6350b02c6faaf_mwpm_03201609.jpeg",
"thumbnail_pic_s03": "https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221020\/640x427_6350b02d108ff_mwpm_03201609.jpeg",
"is_content": "1"
},
{
"uniquekey": "0341a5839c52e548f5031b5572f555e1",
"title": "“懒人经济”带动家政服务成换季“必选项”",
"date": "2022-10-20 10:18:00",
"category": "头条",
"author_name": "科普社会",
"url": "https:\/\/mini.eastday.com\/mobile\/221020101827494699308.html",
"thumbnail_pic_s": "",
"is_content": "1"
},
{
"uniquekey": "846f56f89d0c1292cace2de4dc0bd600",
"title": "中华国职业分类大典源:赵春旭萌生做专职墙绘师,月收入过万",
"date": "2022-10-20 10:17:00",
"category": "头条",
"author_name": "科普社会",
"url": "https:\/\/mini.eastday.com\/mobile\/221020101758984878777.html",
"thumbnail_pic_s": "https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221020\/600x400_6350afd54d714_mwpm_03201609.jpeg",
"is_content": "1"
},
{
"uniquekey": "d3059c3d8ab95782a31206b52fe277e8",
"title": "天猫双11开启“云催熟”智利车厘子预售",
"date": "2022-10-20 10:17:00",
"category": "头条",
"author_name": "科普社会",
"url": "https:\/\/mini.eastday.com\/mobile\/221020101725077210942.html",
"thumbnail_pic_s": "https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221020\/640x283_6350afb4734eb_mwpm_03201609.jpeg",
"is_content": "1"
},
{
"uniquekey": "455a285361622dd3c7e52cf0b9b954ca",
"title": "爷爷朱树勤对孙子朱炳畅入伍临行前的训话,见证爱国情怀",
"date": "2022-10-20 10:15:00",
"category": "头条",
"author_name": "科普社会",
"url": "https:\/\/mini.eastday.com\/mobile\/221020101505168254439.html",
"thumbnail_pic_s": "",
"is_content": "1"
},
{
"uniquekey": "538f4dd9da0e06908f23685adec3f774",
"title": "灌云:生态宜居的村庄生态环境之变",
"date": "2022-10-20 10:14:00",
"category": "头条",
"author_name": "科普社会",
"url": "https:\/\/mini.eastday.com\/mobile\/221020101433510175971.html",
"thumbnail_pic_s": "https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221020\/640x411_6350af08ec16f_mwpm_03201609.jpeg",
"is_content": "1"
},
{
"uniquekey": "6912b104f8fa804bbabb794e691f17a3",
"title": "苏州相城区望亭镇华阳村矮家浜成立“空中缆线”整治组",
"date": "2022-10-20 10:10:00",
"category": "头条",
"author_name": "科普社会",
"url": "https:\/\/mini.eastday.com\/mobile\/221020101014226969303.html",
"thumbnail_pic_s": "https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221020\/640x480_6350ae0492db8_mwpm_03201609.jpeg",
"thumbnail_pic_s02": "https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221020\/640x480_6350ae0540a62_mwpm_03201609.jpeg",
"thumbnail_pic_s03": "https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221020\/640x480_6350ae05c6d26_mwpm_03201609.jpeg",
"is_content": "1"
},
{
"uniquekey": "0cf0b0a5c2bbaca5fa850c578f475e59",
"title": "常州出台房屋安全鉴定条例,租赁住房被罚款",
"date": "2022-10-20 10:09:00",
"category": "头条",
"author_name": "科普社会",
"url": "https:\/\/mini.eastday.com\/mobile\/221020100927254339003.html",
"thumbnail_pic_s": "https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221020\/640x327_6350add6b1733_mwpm_03201609.jpeg",
"is_content": "1"
},
{
"uniquekey": "b1f633e15e34868d8ab9f7ca712e661d",
"title": "常州市级粮食共同担保基金管理实施意见出台",
"date": "2022-10-20 10:09:00",
"category": "头条",
"author_name": "科普社会",
"url": "https:\/\/mini.eastday.com\/mobile\/221020100952140845491.html",
"thumbnail_pic_s": "https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221020\/640x369_6350adef8965c_mwpm_03201609.jpeg",
"is_content": "1"
},
{
"uniquekey": "43a9e6a3982b5b705fc1b47f48a076c7",
"title": "全球第一条回收废旧塑料瓶、循环再生产化纤产业线落户泗阳",
"date": "2022-10-20 10:08:00",
"category": "头条",
"author_name": "科普社会",
"url": "https:\/\/mini.eastday.com\/mobile\/221020100854973871402.html",
"thumbnail_pic_s": "https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221020\/640x403_6350adb673387_mwpm_03201609.jpeg",
"is_content": "1"
},
{
"uniquekey": "167bebaad60ba126f63c3c46a5c8c8fa",
"title": "南通小女孩撞脸商场海报,家长苦笑:我不是商场老板",
"date": "2022-10-20 10:08:00",
"category": "头条",
"author_name": "科普社会",
"url": "https:\/\/mini.eastday.com\/mobile\/221020100831181620152.html",
"thumbnail_pic_s": "https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221020\/557x753_6350ad9e86b16_mwpm_03201609.jpeg",
"is_content": "1"
},
{
"uniquekey": "2c1f95199a6c0b2a7597afa613b0c368",
"title": "未来三天江苏大部分地区还是以云系变化为主",
"date": "2022-10-20 10:07:00",
"category": "头条",
"author_name": "科普社会",
"url": "https:\/\/mini.eastday.com\/mobile\/221020100722955166562.html",
"thumbnail_pic_s": "",
"is_content": "1"
},
{
"uniquekey": "41251175342834072056277341ffcc59",
"title": "突遇货车起火,公交司机秒变“救火勇士”",
"date": "2022-10-20 10:06:00",
"category": "头条",
"author_name": "科普社会",
"url": "https:\/\/mini.eastday.com\/mobile\/221020100644540695411.html",
"thumbnail_pic_s": "",
"is_content": "1"
},
{
"uniquekey": "771db08bed76d5140559c9fd1034650e",
"title": "“肆零”的寻亲之旅",
"date": "2022-10-20 10:05:00",
"category": "头条",
"author_name": "科普社会",
"url": "https:\/\/mini.eastday.com\/mobile\/221020100544944267249.html",
"thumbnail_pic_s": "https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221020\/640x779_6350acf5befd5_mwpm_03201609.jpeg",
"thumbnail_pic_s02": "https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221020\/1080x1080_6350acf685c16_mwpm_03201609.jpeg",
"thumbnail_pic_s03": "https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221020\/1080x1080_6350acf7a1aec_mwpm_03201609.jpeg",
"is_content": "1"
},
{
"uniquekey": "408227c36b5b96f8bbd86bac823b4081",
"title": "儿子读私立学校一年需8万元,女子要求前夫分摊未获法院支持",
"date": "2022-10-20 10:00:00",
"category": "头条",
"author_name": "澎湃新闻",
"url": "https:\/\/mini.eastday.com\/mobile\/221020100018867299728.html",
"thumbnail_pic_s": "",
"is_content": "1"
},
{
"uniquekey": "3c4e9203b04dca8feddfc89e6e35e612",
"title": "纪录片|十年如一日",
"date": "2022-10-20 09:26:00",
"category": "头条",
"author_name": "人民日报",
"url": "https:\/\/mini.eastday.com\/mobile\/221020092622633152797.html",
"thumbnail_pic_s": "https:\/\/dfzximg02.dftoutiao.com\/news\/20221020\/20221020092622_1252fa4a86457831cacb5a4d55c284c5_1_mwpm_03201609.jpeg",
"thumbnail_pic_s02": "https:\/\/dfzximg02.dftoutiao.com\/news\/20221020\/20221020092622_1252fa4a86457831cacb5a4d55c284c5_2_mwpm_03201609.jpeg",
"thumbnail_pic_s03": "https:\/\/dfzximg02.dftoutiao.com\/news\/20221020\/20221020092622_1252fa4a86457831cacb5a4d55c284c5_3_mwpm_03201609.jpeg",
"is_content": "1"
},
{
"uniquekey": "adfc54b6f9874fe206b89920ff3df921",
"title": "夏县南关:红薯丰收了,其中一个重达17.06斤",
"date": "2022-10-20 07:10:00",
"category": "头条",
"author_name": "乡旅画报",
"url": "https:\/\/mini.eastday.com\/mobile\/221020071022674101672.html",
"thumbnail_pic_s": "https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221020\/800x528_63508360187aa_mwpmwm_03201609.jpeg",
"is_content": "1"
},
{
"uniquekey": "6080636250fb7bc2222210abb43272f7",
"title": "12款洗烘一体机比较试验结果!错过别怪我……",
"date": "2022-10-19 23:28:00",
"category": "头条",
"author_name": "深圳市消委会",
"url": "https:\/\/mini.eastday.com\/mobile\/221019232857478651115.html",
"thumbnail_pic_s": "https:\/\/dfzximg02.dftoutiao.com\/news\/20221019\/20221019232857_0c3fc874954731a421f8e05050d37da4_1_mwpm_03201609.jpeg",
"thumbnail_pic_s02": "https:\/\/dfzximg02.dftoutiao.com\/news\/20221019\/20221019232857_0c3fc874954731a421f8e05050d37da4_2_mwpm_03201609.jpeg",
"thumbnail_pic_s03": "https:\/\/dfzximg02.dftoutiao.com\/news\/20221019\/20221019232857_0c3fc874954731a421f8e05050d37da4_3_mwpm_03201609.jpeg",
"is_content": "1"
},
{
"uniquekey": "55469b4057af16cb5160427e8cb7cb93",
"title": "据说精致的人泡茶都是用袋子装茶叶的,那袋子安全吗?丨消保委亲测",
"date": "2022-10-19 23:28:00",
"category": "头条",
"author_name": "上海市消保委",
"url": "https:\/\/mini.eastday.com\/mobile\/221019232824144652333.html",
"thumbnail_pic_s": "",
"is_content": "1"
},
{
"uniquekey": "206b1cee5020f7bfb741c8501aa65dc5",
"title": "面包车后座拆卸变成“货车”,交警:违法!",
"date": "2022-10-19 23:19:00",
"category": "头条",
"author_name": "科普社会",
"url": "https:\/\/mini.eastday.com\/mobile\/221019231953968121087.html",
"thumbnail_pic_s": "https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221019\/640x480_635015997b6b4_mwpm_03201609.jpeg",
"is_content": "1"
},
{
"uniquekey": "56e1306958a2371a24c93a548e91358b",
"title": "扬州市汶河小学:劳动不能只停留在课堂",
"date": "2022-10-19 23:19:00",
"category": "头条",
"author_name": "科普社会",
"url": "https:\/\/mini.eastday.com\/mobile\/221019231922667461038.html",
"thumbnail_pic_s": "https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221019\/640x480_63501577d8625_mwpm_03201609.jpeg",
"thumbnail_pic_s02": "https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221019\/640x480_6350157879f59_mwpm_03201609.jpeg",
"thumbnail_pic_s03": "https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221019\/640x853_63501579281e1_mwpm_03201609.jpeg",
"is_content": "1"
},
{
"uniquekey": "8f374c6936fee399e24122ca202ab837",
"title": "南京市回龙桥小学开展“石榴节”综合性课程实践活动",
"date": "2022-10-19 23:18:00",
"category": "头条",
"author_name": "科普社会",
"url": "https:\/\/mini.eastday.com\/mobile\/221019231848440968087.html",
"thumbnail_pic_s": "https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221019\/640x427_6350155442fd2_mwpm_03201609.jpeg",
"thumbnail_pic_s02": "https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221019\/640x640_63501555e7f21_mwpm_03201609.jpeg",
"thumbnail_pic_s03": "https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221019\/549x398_63501556f3561_mwpm_03201609.jpeg",
"is_content": "1"
},
{
"uniquekey": "986101fc5689a3a6ad2c7eb6027003ed",
"title": "南京地铁9号线d9-ta01标红山路站进入盾构掘进阶段",
"date": "2022-10-19 23:16:00",
"category": "头条",
"author_name": "科普社会",
"url": "https:\/\/mini.eastday.com\/mobile\/221019231654079425553.html",
"thumbnail_pic_s": "https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221019\/640x480_635014e5878e6_mwpm_03201609.jpeg",
"is_content": "1"
},
{
"uniquekey": "b7bfcc5b824664f11e7d3a4c14d9123a",
"title": "张家港市高新区(塘桥镇)党委积极发挥“三级联动”作用",
"date": "2022-10-19 23:16:00",
"category": "头条",
"author_name": "科普社会",
"url": "https:\/\/mini.eastday.com\/mobile\/221019231610601853624.html",
"thumbnail_pic_s": "https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221019\/640x480_635014ba1e348_mwpm_03201609.jpeg",
"is_content": "1"
},
{
"uniquekey": "05b54d70f25ab918b267d2deef6d9b8a",
"title": "南京最美的石象路,你见过吗?",
"date": "2022-10-19 23:15:00",
"category": "头条",
"author_name": "科普社会",
"url": "https:\/\/mini.eastday.com\/mobile\/221019231542127154546.html",
"thumbnail_pic_s": "https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221019\/640x853_6350149b18f4d_mwpm_03201609.jpeg",
"thumbnail_pic_s02": "https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221019\/640x491_6350149c7b9ee_mwpm_03201609.jpeg",
"thumbnail_pic_s03": "https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221019\/640x282_6350149d13479_mwpm_03201609.jpeg",
"is_content": "1"
},
{
"uniquekey": "706f5776f2780bd299c7433f3abe9036",
"title": "南京鼓楼医院医学美容中心正式开诊",
"date": "2022-10-19 23:15:00",
"category": "头条",
"author_name": "科普社会",
"url": "https:\/\/mini.eastday.com\/mobile\/221019231504940969702.html",
"thumbnail_pic_s": "https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221019\/640x369_63501476e74ef_mwpm_03201609.jpeg",
"thumbnail_pic_s02": "https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221019\/640x658_63501477a45f0_mwpm_03201609.jpeg",
"thumbnail_pic_s03": "https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221019\/640x1152_635014786b331_mwpm_03201609.jpeg",
"is_content": "1"
},
{
"uniquekey": "95394c0e61d08915f5eb0bd6362b46e6",
"title": "张家港市德积街道小明沙村:党建引领营造良好人居环境",
"date": "2022-10-19 23:14:00",
"category": "头条",
"author_name": "科普社会",
"url": "https:\/\/mini.eastday.com\/mobile\/221019231440984492833.html",
"thumbnail_pic_s": "https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221019\/640x480_635014606d78a_mwpm_03201609.jpeg",
"is_content": "1"
},
{
"uniquekey": "608485bf29fd3bff385de90fdaae9fb1",
"title": "张家港市南丰镇南丰村党总支积极探索“三化三式”服务",
"date": "2022-10-19 23:13:00",
"category": "头条",
"author_name": "科普社会",
"url": "https:\/\/mini.eastday.com\/mobile\/221019231338297302000.html",
"thumbnail_pic_s": "https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221019\/640x480_6350142091e74_mwpm_03201609.jpeg",
"thumbnail_pic_s02": "https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221019\/640x427_6350142134fc9_mwpm_03201609.jpeg",
"thumbnail_pic_s03": "https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221019\/640x480_63501421ce7f8_mwpm_03201609.jpeg",
"is_content": "1"
},
{
"uniquekey": "ce8eecb18d8d6c7bea182c3eb317e384",
"title": "大丰区草堰镇人大代表助力打赢“蓝天碧水保卫战”",
"date": "2022-10-19 23:13:00",
"category": "头条",
"author_name": "科普社会",
"url": "https:\/\/mini.eastday.com\/mobile\/221019231307074645537.html",
"thumbnail_pic_s": "https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221019\/640x426_6350140288d4d_mwpm_03201609.jpeg",
"is_content": "1"
}
],
"page": "1",
"pageSize": "30"
},
"error_code": 0
}
export const testData2={
"reason":"success!",
"result":{
"stat":"1",
"data":[
{
"uniquekey":"34ef014270b60b6491abd3045a0414a3",
"title":"北京幼儿园转让,民办幼儿园转让,带证幼儿园低价转让流程",
"date":"2022-10-20 13:42:00",
"category":"头条",
"author_name":"企业服务老魏",
"url":"https:\/\/mini.eastday.com\/mobile\/221020134241443122753.html",
"thumbnail_pic_s":"https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221020\/1200x800_6350dfc8538d6_mwpm_03201609.jpeg",
"thumbnail_pic_s02":"https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221020\/2048x1365_6350dfc8d6e11_mwpm_03201609.jpeg",
"thumbnail_pic_s03":"https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221020\/1200x675_6350dfd0827f8_mwpm_03201609.jpeg",
"is_content":"1"
},
{
"uniquekey":"34aa0d02ff87a19b87ed7d5940a29808",
"title":"静海区发布关于新增划定风险区域的通告",
"date":"2022-10-20 13:31:00",
"category":"头条",
"author_name":"岛民观察",
"url":"https:\/\/mini.eastday.com\/mobile\/221020133154981945928.html",
"thumbnail_pic_s":"https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221020\/935x551_6350dd4a618a8_mwpm_03201609.jpeg",
"is_content":"1"
},
{
"uniquekey":"021f3b527fa6d0334a54ac4f44612115",
"title":"砀城镇本轮区域核酸检测时间调整!",
"date":"2022-10-20 13:30:00",
"category":"头条",
"author_name":"岛民观察",
"url":"https:\/\/mini.eastday.com\/mobile\/221020133043562261275.html",
"thumbnail_pic_s":"https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221020\/935x551_6350dd0304ba0_mwpm_03201609.jpeg",
"is_content":"1"
},
{
"uniquekey":"673b4f0480cd847743c2faf9d12d8bd1",
"title":"牛栏山魁盛号立足京城释放名片效应",
"date":"2022-10-20 13:20:00",
"category":"头条",
"author_name":"中国质量报",
"url":"https:\/\/mini.eastday.com\/mobile\/221020132026241845820.html",
"thumbnail_pic_s":"",
"is_content":"1"
},
{
"uniquekey":"115b02d3f2ba27b8bd603da8918edda9",
"title":"寻求商品批发的“数字之变” “天下第一街”汉正街再出发",
"date":"2022-10-20 13:18:00",
"category":"头条",
"author_name":"中国质量报",
"url":"https:\/\/mini.eastday.com\/mobile\/221020131834598197917.html",
"thumbnail_pic_s":"",
"is_content":"1"
},
{
"uniquekey":"4aefc54dcf39998b8d491c34153f75bc",
"title":"盛会进行时·我在现场 | 【巴西媒体记者:中国的经济发展影响着全世界】",
"date":"2022-10-20 12:13:00",
"category":"头条",
"author_name":"海外网",
"url":"https:\/\/mini.eastday.com\/mobile\/221020121314102136119.html",
"thumbnail_pic_s":"",
"is_content":"1"
},
{
"uniquekey":"d7af2050f42f2e3eb82957926aae520f",
"title":"美媒:新冠之下美国人2021年预期寿命比2019年下降2岁多 少数族裔情况更糟",
"date":"2022-10-20 11:07:00",
"category":"头条",
"author_name":"海外网",
"url":"https:\/\/mini.eastday.com\/mobile\/221020110752968823989.html",
"thumbnail_pic_s":"https:\/\/dfzximg02.dftoutiao.com\/news\/20221020\/20221020110752_7edd5d1c1411987904494874b5473faa_1_mwpm_03201609.jpeg",
"is_content":"1"
},
{
"uniquekey":"9c374c57c18be2ae97129a0f54c23e69",
"title":"中国共产党第二十次全国代表大会新闻中心举行集体采访",
"date":"2022-10-20 11:06:00",
"category":"头条",
"author_name":"中国质量报",
"url":"https:\/\/mini.eastday.com\/mobile\/221020110609452312859.html",
"thumbnail_pic_s":"https:\/\/dfzximg02.dftoutiao.com\/news\/20221020\/20221020110609_c3bcab15ea2453cb928bb0fdbb9ffba3_1_mwpm_03201609.jpeg",
"thumbnail_pic_s02":"https:\/\/dfzximg02.dftoutiao.com\/news\/20221020\/20221020110609_c3bcab15ea2453cb928bb0fdbb9ffba3_2_mwpm_03201609.jpeg",
"is_content":"1"
},
{
"uniquekey":"abe8a4a1a2477ed7ac4b4f4b751a145a",
"title":"江苏那些未曾消失的老地名",
"date":"2022-10-20 10:19:00",
"category":"头条",
"author_name":"科普社会",
"url":"https:\/\/mini.eastday.com\/mobile\/221020101953481533325.html",
"thumbnail_pic_s":"https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221020\/640x640_6350b0461fb16_mwpm_03201609.jpeg",
"thumbnail_pic_s02":"https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221020\/640x363_6350b0473c060_mwpm_03201609.jpeg",
"thumbnail_pic_s03":"https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221020\/640x393_6350b0483b628_mwpm_03201609.jpeg",
"is_content":"1"
},
{
"uniquekey":"cae28fd1eeafe3ec00971c710a01f95d",
"title":"江苏省少年科学院院士设计建议获省级一等奖",
"date":"2022-10-20 10:19:00",
"category":"头条",
"author_name":"科普社会",
"url":"https:\/\/mini.eastday.com\/mobile\/221020101926072727008.html",
"thumbnail_pic_s":"https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221020\/640x360_6350b02baad15_mwpm_03201609.jpeg",
"thumbnail_pic_s02":"https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221020\/640x480_6350b02c6faaf_mwpm_03201609.jpeg",
"thumbnail_pic_s03":"https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221020\/640x427_6350b02d108ff_mwpm_03201609.jpeg",
"is_content":"1"
},
{
"uniquekey":"0341a5839c52e548f5031b5572f555e1",
"title":"“懒人经济”带动家政服务成换季“必选项”",
"date":"2022-10-20 10:18:00",
"category":"头条",
"author_name":"科普社会",
"url":"https:\/\/mini.eastday.com\/mobile\/221020101827494699308.html",
"thumbnail_pic_s":"",
"is_content":"1"
},
{
"uniquekey":"846f56f89d0c1292cace2de4dc0bd600",
"title":"中华国职业分类大典源:赵春旭萌生做专职墙绘师,月收入过万",
"date":"2022-10-20 10:17:00",
"category":"头条",
"author_name":"科普社会",
"url":"https:\/\/mini.eastday.com\/mobile\/221020101758984878777.html",
"thumbnail_pic_s":"https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221020\/600x400_6350afd54d714_mwpm_03201609.jpeg",
"is_content":"1"
},
{
"uniquekey":"d3059c3d8ab95782a31206b52fe277e8",
"title":"天猫双11开启“云催熟”智利车厘子预售",
"date":"2022-10-20 10:17:00",
"category":"头条",
"author_name":"科普社会",
"url":"https:\/\/mini.eastday.com\/mobile\/221020101725077210942.html",
"thumbnail_pic_s":"https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221020\/640x283_6350afb4734eb_mwpm_03201609.jpeg",
"is_content":"1"
},
{
"uniquekey":"455a285361622dd3c7e52cf0b9b954ca",
"title":"爷爷朱树勤对孙子朱炳畅入伍临行前的训话,见证爱国情怀",
"date":"2022-10-20 10:15:00",
"category":"头条",
"author_name":"科普社会",
"url":"https:\/\/mini.eastday.com\/mobile\/221020101505168254439.html",
"thumbnail_pic_s":"",
"is_content":"1"
},
{
"uniquekey":"538f4dd9da0e06908f23685adec3f774",
"title":"灌云:生态宜居的村庄生态环境之变",
"date":"2022-10-20 10:14:00",
"category":"头条",
"author_name":"科普社会",
"url":"https:\/\/mini.eastday.com\/mobile\/221020101433510175971.html",
"thumbnail_pic_s":"https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221020\/640x411_6350af08ec16f_mwpm_03201609.jpeg",
"is_content":"1"
},
{
"uniquekey":"6912b104f8fa804bbabb794e691f17a3",
"title":"苏州相城区望亭镇华阳村矮家浜成立“空中缆线”整治组",
"date":"2022-10-20 10:10:00",
"category":"头条",
"author_name":"科普社会",
"url":"https:\/\/mini.eastday.com\/mobile\/221020101014226969303.html",
"thumbnail_pic_s":"https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221020\/640x480_6350ae0492db8_mwpm_03201609.jpeg",
"thumbnail_pic_s02":"https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221020\/640x480_6350ae0540a62_mwpm_03201609.jpeg",
"thumbnail_pic_s03":"https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221020\/640x480_6350ae05c6d26_mwpm_03201609.jpeg",
"is_content":"1"
},
{
"uniquekey":"0cf0b0a5c2bbaca5fa850c578f475e59",
"title":"常州出台房屋安全鉴定条例,租赁住房被罚款",
"date":"2022-10-20 10:09:00",
"category":"头条",
"author_name":"科普社会",
"url":"https:\/\/mini.eastday.com\/mobile\/221020100927254339003.html",
"thumbnail_pic_s":"https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221020\/640x327_6350add6b1733_mwpm_03201609.jpeg",
"is_content":"1"
},
{
"uniquekey":"b1f633e15e34868d8ab9f7ca712e661d",
"title":"常州市级粮食共同担保基金管理实施意见出台",
"date":"2022-10-20 10:09:00",
"category":"头条",
"author_name":"科普社会",
"url":"https:\/\/mini.eastday.com\/mobile\/221020100952140845491.html",
"thumbnail_pic_s":"https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221020\/640x369_6350adef8965c_mwpm_03201609.jpeg",
"is_content":"1"
},
{
"uniquekey":"43a9e6a3982b5b705fc1b47f48a076c7",
"title":"全球第一条回收废旧塑料瓶、循环再生产化纤产业线落户泗阳",
"date":"2022-10-20 10:08:00",
"category":"头条",
"author_name":"科普社会",
"url":"https:\/\/mini.eastday.com\/mobile\/221020100854973871402.html",
"thumbnail_pic_s":"https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221020\/640x403_6350adb673387_mwpm_03201609.jpeg",
"is_content":"1"
},
{
"uniquekey":"167bebaad60ba126f63c3c46a5c8c8fa",
"title":"南通小女孩撞脸商场海报,家长苦笑:我不是商场老板",
"date":"2022-10-20 10:08:00",
"category":"头条",
"author_name":"科普社会",
"url":"https:\/\/mini.eastday.com\/mobile\/221020100831181620152.html",
"thumbnail_pic_s":"https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221020\/557x753_6350ad9e86b16_mwpm_03201609.jpeg",
"is_content":"1"
},
{
"uniquekey":"2c1f95199a6c0b2a7597afa613b0c368",
"title":"未来三天江苏大部分地区还是以云系变化为主",
"date":"2022-10-20 10:07:00",
"category":"头条",
"author_name":"科普社会",
"url":"https:\/\/mini.eastday.com\/mobile\/221020100722955166562.html",
"thumbnail_pic_s":"",
"is_content":"1"
},
{
"uniquekey":"41251175342834072056277341ffcc59",
"title":"突遇货车起火,公交司机秒变“救火勇士”",
"date":"2022-10-20 10:06:00",
"category":"头条",
"author_name":"科普社会",
"url":"https:\/\/mini.eastday.com\/mobile\/221020100644540695411.html",
"thumbnail_pic_s":"",
"is_content":"1"
},
{
"uniquekey":"771db08bed76d5140559c9fd1034650e",
"title":"“肆零”的寻亲之旅",
"date":"2022-10-20 10:05:00",
"category":"头条",
"author_name":"科普社会",
"url":"https:\/\/mini.eastday.com\/mobile\/221020100544944267249.html",
"thumbnail_pic_s":"https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221020\/640x779_6350acf5befd5_mwpm_03201609.jpeg",
"thumbnail_pic_s02":"https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221020\/1080x1080_6350acf685c16_mwpm_03201609.jpeg",
"thumbnail_pic_s03":"https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221020\/1080x1080_6350acf7a1aec_mwpm_03201609.jpeg",
"is_content":"1"
},
{
"uniquekey":"408227c36b5b96f8bbd86bac823b4081",
"title":"儿子读私立学校一年需8万元,女子要求前夫分摊未获法院支持",
"date":"2022-10-20 10:00:00",
"category":"头条",
"author_name":"澎湃新闻",
"url":"https:\/\/mini.eastday.com\/mobile\/221020100018867299728.html",
"thumbnail_pic_s":"",
"is_content":"1"
},
{
"uniquekey":"3c4e9203b04dca8feddfc89e6e35e612",
"title":"纪录片|十年如一日",
"date":"2022-10-20 09:26:00",
"category":"头条",
"author_name":"人民日报",
"url":"https:\/\/mini.eastday.com\/mobile\/221020092622633152797.html",
"thumbnail_pic_s":"https:\/\/dfzximg02.dftoutiao.com\/news\/20221020\/20221020092622_1252fa4a86457831cacb5a4d55c284c5_1_mwpm_03201609.jpeg",
"thumbnail_pic_s02":"https:\/\/dfzximg02.dftoutiao.com\/news\/20221020\/20221020092622_1252fa4a86457831cacb5a4d55c284c5_2_mwpm_03201609.jpeg",
"thumbnail_pic_s03":"https:\/\/dfzximg02.dftoutiao.com\/news\/20221020\/20221020092622_1252fa4a86457831cacb5a4d55c284c5_3_mwpm_03201609.jpeg",
"is_content":"1"
},
{
"uniquekey":"adfc54b6f9874fe206b89920ff3df921",
"title":"夏县南关:红薯丰收了,其中一个重达17.06斤",
"date":"2022-10-20 07:10:00",
"category":"头条",
"author_name":"乡旅画报",
"url":"https:\/\/mini.eastday.com\/mobile\/221020071022674101672.html",
"thumbnail_pic_s":"https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221020\/800x528_63508360187aa_mwpmwm_03201609.jpeg",
"is_content":"1"
},
{
"uniquekey":"6080636250fb7bc2222210abb43272f7",
"title":"12款洗烘一体机比较试验结果!错过别怪我……",
"date":"2022-10-19 23:28:00",
"category":"头条",
"author_name":"深圳市消委会",
"url":"https:\/\/mini.eastday.com\/mobile\/221019232857478651115.html",
"thumbnail_pic_s":"https:\/\/dfzximg02.dftoutiao.com\/news\/20221019\/20221019232857_0c3fc874954731a421f8e05050d37da4_1_mwpm_03201609.jpeg",
"thumbnail_pic_s02":"https:\/\/dfzximg02.dftoutiao.com\/news\/20221019\/20221019232857_0c3fc874954731a421f8e05050d37da4_2_mwpm_03201609.jpeg",
"thumbnail_pic_s03":"https:\/\/dfzximg02.dftoutiao.com\/news\/20221019\/20221019232857_0c3fc874954731a421f8e05050d37da4_3_mwpm_03201609.jpeg",
"is_content":"1"
},
{
"uniquekey":"55469b4057af16cb5160427e8cb7cb93",
"title":"据说精致的人泡茶都是用袋子装茶叶的,那袋子安全吗?丨消保委亲测",
"date":"2022-10-19 23:28:00",
"category":"头条",
"author_name":"上海市消保委",
"url":"https:\/\/mini.eastday.com\/mobile\/221019232824144652333.html",
"thumbnail_pic_s":"",
"is_content":"1"
},
{
"uniquekey":"206b1cee5020f7bfb741c8501aa65dc5",
"title":"面包车后座拆卸变成“货车”,交警:违法!",
"date":"2022-10-19 23:19:00",
"category":"头条",
"author_name":"科普社会",
"url":"https:\/\/mini.eastday.com\/mobile\/221019231953968121087.html",
"thumbnail_pic_s":"https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221019\/640x480_635015997b6b4_mwpm_03201609.jpeg",
"is_content":"1"
},
{
"uniquekey":"56e1306958a2371a24c93a548e91358b",
"title":"扬州市汶河小学:劳动不能只停留在课堂",
"date":"2022-10-19 23:19:00",
"category":"头条",
"author_name":"科普社会",
"url":"https:\/\/mini.eastday.com\/mobile\/221019231922667461038.html",
"thumbnail_pic_s":"https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221019\/640x480_63501577d8625_mwpm_03201609.jpeg",
"thumbnail_pic_s02":"https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221019\/640x480_6350157879f59_mwpm_03201609.jpeg",
"thumbnail_pic_s03":"https:\/\/dfzximg02.dftoutiao.com\/minimodify\/20221019\/640x853_63501579281e1_mwpm_03201609.jpeg",
"is_content":"1"
}
],
"page":"1",
"pageSize":"30"
},
"error_code":0
}