第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

Java 和 json 對(duì)象

Java 和 json 對(duì)象

楊魅力 2023-08-04 14:59:52
我正在嘗試從鏈接下載包含最新新聞的 JSON 文件,然后使用 JSON 文件中的新聞文章填充新聞頁面,但我無法讓它工作。這是我的 JSON 文件:["sections": {  {    "title": "category 1",    "color": 2,    "posts": [      {        "title": "Test 1",        "date": 17-09-2019,        "images": {          "launcher_preview": "testimage.png",          "imageName2": "testimage.png"        },        "href": "https://testlink.com"      },      {        "title": "Test 2",        "date": 17-09-2019,        "images": {          "launcher_preview": "testimage2.png",          "imageName2": "testiamge2.png"        },        "href": "https://testlink2.com"      }    ]  },  {    "title": "category 2",    "color": 2,    "posts": [      {        "title": "Test 3",        "date": 17-09-2019,        "images": {          "launcher_preview": "testimage3.png",          "imageName2": "testimage3.png"        },        "href": "https://testlink3.com"      }    ]  }  }]我不確定是什么導(dǎo)致了這個(gè)錯(cuò)誤,我認(rèn)為我的 JSON 格式不正確,但我不確定,這里有人能看到是什么導(dǎo)致了這個(gè)錯(cuò)誤嗎?
查看完整描述

3 回答

?
繁星淼淼

TA貢獻(xiàn)1775條經(jīng)驗(yàn) 獲得超11個(gè)贊

如果您的對(duì)象位于數(shù)組中,則無法為其分配鍵。結(jié)果,你的HttpRequest.asJson()失敗了。我已經(jīng)編輯了您的 JSON,將您的部分作為對(duì)象數(shù)組返回,而不是包含這些部分的單個(gè)數(shù)組對(duì)象。

此外,JSON 文件中不能將日期作為數(shù)字。我也將它們轉(zhuǎn)換為字符串。出于標(biāo)準(zhǔn)化目的,請(qǐng)確保將日期存儲(chǔ)為實(shí)際文件中的ISO 8601字符串。

嘗試一下 JSON 的編輯版本:

[

? {

? ? ? "title": "category 1",

? ? ? "color": 2,

? ? ? "posts": [{

? ? ? ? ? ? ? "title": "Test 1",

? ? ? ? ? ? ? "date": "17-09-2019",

? ? ? ? ? ? ? "images": {

? ? ? ? ? ? ? ? ? "launcher_preview": "testimage.png",

? ? ? ? ? ? ? ? ? "imageName2": "testimage.png"

? ? ? ? ? ? ? },

? ? ? ? ? ? ? "href": "https://testlink.com"

? ? ? ? ? },

? ? ? ? ? {

? ? ? ? ? ? ? "title": "Test 2",

? ? ? ? ? ? ? "date": "17-09-2019",

? ? ? ? ? ? ? "images": {

? ? ? ? ? ? ? ? ? "launcher_preview": "testimage2.png",

? ? ? ? ? ? ? ? ? "imageName2": "testiamge2.png"

? ? ? ? ? ? ? },

? ? ? ? ? ? ? "href": "https://testlink2.com"

? ? ? ? ? }

? ? ? ]

? },

? {

? ? ? "title": "category 2",

? ? ? "color": 2,

? ? ? "posts": [{

? ? ? ? ? "title": "Test 3",

? ? ? ? ? "date": "17-09-2019",

? ? ? ? ? "images": {

? ? ? ? ? ? ? "launcher_preview": "testimage3.png",

? ? ? ? ? ? ? "imageName2": "testimage3.png"

? ? ? ? ? },

? ? ? ? ? "href": "https://testlink3.com"

? ? ? }]

? }

]


查看完整回答
反對(duì) 回復(fù) 2023-08-04
?
慕姐8265434

TA貢獻(xiàn)1813條經(jīng)驗(yàn) 獲得超2個(gè)贊

我看到三個(gè)問題

1. json 對(duì)象周圍的括號(hào)錯(cuò)誤。

2.Sections 是一個(gè)數(shù)組,但缺少數(shù)組語法。

3. 日期字符串不是有效的對(duì)象類型,該字符串應(yīng)該用引號(hào)引起來。具有部分的對(duì)象的正確格式的 json,它是兩個(gè)部分的數(shù)組。


{"sections": [

  {

    "title": "category 1",

    "color": 2,

    "posts": [

      {

        "title": "Test 1",

        "date": "17-09-2019",

        "images": {

          "launcher_preview": "testimage.png",

          "imageName2": "testimage.png"

        },

        "href": "https://testlink.com"

      },

      {

        "title": "Test 2",

        "date": "17-09-2019",

        "images": {

          "launcher_preview": "testimage2.png",

          "imageName2": "testiamge2.png"

        },

        "href": "https://testlink2.com"

      }

    ]

  },

  {

    "title": "category 2",

    "color": 2,

    "posts": [

      {

        "title": "Test 3",

        "date": "17-09-2019",

        "images": {

          "launcher_preview": "testimage3.png",

          "imageName2": "testimage3.png"

        },

        "href": "https://testlink3.com"

      }

    ]

  }]

}


查看完整回答
反對(duì) 回復(fù) 2023-08-04
?
陪伴而非守候

TA貢獻(xiàn)1757條經(jīng)驗(yàn) 獲得超8個(gè)贊

[
    "sections": {
  {

我在文件的開頭看到兩個(gè)問題。

第一,第一個(gè)字符是方括號(hào),表示包含的值將是一個(gè)簡(jiǎn)單列表。但隨后它直接進(jìn)入"sections" : {,這是一個(gè)鍵/值語法,表明我們應(yīng)該處于字典/哈希圖上下文中。但我們不是;我們處于列表上下文中。

其次,后面有兩個(gè)左大括號(hào)"sections":。第二個(gè)是想說明什么?


查看完整回答
反對(duì) 回復(fù) 2023-08-04
  • 3 回答
  • 0 關(guān)注
  • 194 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)