获取json的常见问题

Posted Harris-H

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取json的常见问题相关的知识,希望对你有一定的参考价值。

获取json的常见问题

1.将字符串转换为json数据出现。

原因:text包含BOM字符

解决方法:将BOM头去掉

python代码

if text.startswith(u'\\ufeff'):
text = text.encode('utf8')[3:].decode('utf8')
myjson = json.loads(text) #再可以正常获取json了

获取图片api实例

web_url = 'https://api.ixiaowai.cn/api/api.php?return=json'
f = Factory.create()
requests.packages.urllib3.disable_warnings()
if __name__ == '__main__':
    def fun(url):
        headers = {
            'user-agent': f.user_agent()
        }
        r = requests.get(web_url, headers=headers,verify=False)
        c = r.text
        if c.startswith(u'\\ufeff'):
            c = c.encode('utf8')[3:].decode('utf8')
        j = json.loads(c)
        return j['imgurl']
    print(fun(web_url))
            # {'code': '200', 'imgurl': 'https://tva2.sinaimg.cn/large/0072Vf1pgy1foxk6m2xufj31hc0u0aru.jpg', 'width': '1920', 'height': '1080'}

关于BOM的介绍

传送门

以上是关于获取json的常见问题的主要内容,如果未能解决你的问题,请参考以下文章

从片段中的json获取值

使用 json rereiver php mysql 在片段中填充列表视图

从viewPager片段(Kotlin)中获取用户输入信息

使用凌空json数据的片段中的Recyclerview?

使用 AsyncTask 从 JSON 中获取数据

json 个人的vscode的代码片段