我有一个JSON数据像
{ "attributes": { }, "body": "title: \"store\"\n' + 'url: \"https://fffffff.com/crr\"\n' + 'adsense: ", "bodyBegin": 1 }
我需要得到值https://fffffff.com/crr"\n如何从这个代码中得到它?
https://fffffff.com/crr"\n
plicqrtu1#
您提供的JSON无效,但是,
{ "attributes":{ }, "body":{ "title":"store\n", "url":"https://fffffff.com/crr\n", "adsense":"" }, "bodyBegin":1 }
编辑它使其有效很简单,获取“url”键值也很简单
jsondata.body.url
1条答案
按热度按时间plicqrtu1#
您提供的JSON无效,但是,
编辑它使其有效很简单,获取“url”键值也很简单