【发布时间】:2014-05-30 06:32:15
【问题描述】:
我有一个 JSON 文件
{
"name": "re2",
"count": 1806,
"frequency": "realtime",
"version": 5,
"newdata": true,
"lastrunstatus": "success",
"lastsuccess": "Fri May 30 2014 06:02:41 GMT+0000 (UTC)",
"results": {
"collection1": [
{
"Title": {
"href": "http://www.realestate.com.au/project-spec+property+%e2%80%93+helio+apartments-vic-north+melbourne-600004887",
"text": "93 Flemington Road, North Melbourne, Vic 3051"
},
"image": {
"href": "http://www.realestate.com.au/project-spec+property+%e2%80%93+helio+apartments-vic-north+melbourne-600004887",
"alt": "93 Flemington Road, North Melbourne, Vic 3051",
"src": "http://i2.au.reastatic.net/345x200/3a7e58fe3aefa7fd373c1b9c9879d648257dc0e7c8d35c6b7a19d261bffeff28/main.jpg"
},
"price": "$700,000 - $770,000",
"title2": {
"href": "http://www.realestate.com.au/project-spec+property+%e2%80%93+helio+apartments-vic-north+melbourne-600004887",
"text": "93 Flemington Road, North Melbourne, Vic 3051"
}
},
{
"Title": {
"href": "http://www.realestate.com.au/project-redmond+park-vic-carlton+north-600002807",
"text": "300 Pigdon Street, Carlton North, Vic 3054"
},
"image": {
"href": "http://www.realestate.com.au/project-redmond+park-vic-carlton+north-600002807",
"alt": "300 Pigdon Street, Carlton North, Vic 3054",
"src": "http://i2.au.reastatic.net/345x200/c22712b2c40db6e8017ebc6f677c9835991e3e1ab9431cfe28d0ab8ea0af43e3/main.jpg"
},
"price": "$830,000 - $880,000",
"title2": {
"href": "http://www.realestate.com.au/project-redmond+park-vic-carlton+north-600002807",
"text": "300 Pigdon Street, Carlton North, Vic 3054"
}
},
{
"Title": {
"href": "http://www.realestate.com.au/property-house-vic-kensington-116973739",
"text": "60 WOLSELEY PARADE, Kensington, Vic 3031"
},
"image": {
"href": "http://www.realestate.com.au/property-house-vic-kensington-116973739",
"alt": "60 WOLSELEY PARADE, Kensington, Vic 3031",
"src": "http://i4.au.reastatic.net/355x265/e026805577c810c6df722c171a00786f4510cb959390375d589e2d1d90ef2461/main.jpg"
},
"price": "SOLD $1,360,000",
"title2": {
"href": "http://www.realestate.com.au/property-house-vic-kensington-116973739",
"text": "60 WOLSELEY PARADE, Kensington, Vic 3031"
}
},
我尝试了许多在线 JSON 到 CSV 转换器,该文件无法正确转换。
我想要一个 CSV 文件 标题、href、文本、图片、href、alt、src、价格
由于文件的复杂性,我没有任何在线教程。
【问题讨论】: