如何从JSON数据中获取值

zpqajqem  于 2023-03-24  发布在  其他
关注(0)|答案(1)|浏览(139)

我有一个JSON数据像

{
    "attributes": {

    },
    "body": "title: \"store\"\n' + 'url: \"https://fffffff.com/crr\"\n' + 'adsense: ",
    "bodyBegin": 1
}

我需要得到值https://fffffff.com/crr"\n
如何从这个代码中得到它?

plicqrtu

plicqrtu1#

您提供的JSON无效,但是,

{
   "attributes":{
      
   },
   "body":{
      "title":"store\n",
      "url":"https://fffffff.com/crr\n",
      "adsense":""
   },
   "bodyBegin":1
}

编辑它使其有效很简单,获取“url”键值也很简单

jsondata.body.url

相关问题