我得到错误期望值:第1行第1列(字符0)时试图解码JSON。

我用于API调用的URL在浏览器中工作正常,但在通过curl请求完成时给出了这个错误。下面是我用于curl请求的代码。

错误发生在返回simplejson.loads(response_json)时

response_json = self.web_fetch(url)
response_json = response_json.decode('utf-8')
return json.loads(response_json)


def web_fetch(self, url):
    buffer = StringIO()
    curl = pycurl.Curl()
    curl.setopt(curl.URL, url)
    curl.setopt(curl.TIMEOUT, self.timeout)
    curl.setopt(curl.WRITEFUNCTION, buffer.write)
    curl.perform()
    curl.close()
    response = buffer.getvalue().strip()
    return response

回溯:

File "/Users/nab/Desktop/myenv2/lib/python2.7/site-packages/django/core/handlers/base.py" in get_response
  111.                         response = callback(request, *callback_args, **callback_kwargs)
File "/Users/nab/Desktop/pricestore/pricemodels/views.py" in view_category
  620.     apicall=api.API().search_parts(category_id= str(categoryofpart.api_id), manufacturer = manufacturer, filter = filters, start=(catpage-1)*20, limit=20, sort_by='[["mpn","asc"]]')
File "/Users/nab/Desktop/pricestore/pricemodels/api.py" in search_parts
  176.         return simplejson.loads(response_json)
File "/Users/nab/Desktop/myenv2/lib/python2.7/site-packages/simplejson/__init__.py" in loads
  455.         return _default_decoder.decode(s)
File "/Users/nab/Desktop/myenv2/lib/python2.7/site-packages/simplejson/decoder.py" in decode
  374.         obj, end = self.raw_decode(s)
File "/Users/nab/Desktop/myenv2/lib/python2.7/site-packages/simplejson/decoder.py" in raw_decode
  393.         return self.scan_once(s, idx=_w(s, idx).end())

Exception Type: JSONDecodeError at /pricemodels/2/dir/
Exception Value: Expecting value: line 1 column 1 (char 0)

当前回答

当你想在python中加载json文件时,这是我发现的最简单的解决方案

import json
data = json.load(open('file_name.json'))

如果给出错误,表示字符在X和Y位置不匹配,则只需在左圆括号内添加encoding='utf-8'

data = json.load(open('file_name.json', encoding='utf-8'))

解释 Open打开文件并读取稍后在json.load中解析的包含。

请注意,使用与open()作为f比上述语法更可靠,因为它确保文件在执行后关闭,完整的语法将是

with open('file_name.json') as f:
    data = json.load(f)

其他回答

对我来说,这是服务器响应的东西,而不是200,响应不是json格式的。我最终在json解析之前这样做:

# this is the https request for data in json format
response_json = requests.get() 

# only proceed if I have a 200 response which is saved in status_code
if (response_json.status_code == 200):  
     response = response_json.json() #converting from json to dictionary using json library

在请求库中,当你遇到404这样的http错误代码并试图将响应解析为JSON时,JSONDecodeError就会发生!

您必须首先检查200 (OK)或让它在错误时抛出以避免这种情况。 我希望它失败时没有那么神秘的错误信息。

注意:正如Martijn Pieters在评论中所说,服务器可以在出现错误时使用JSON进行响应(这取决于实现),因此检查Content-Type报头更可靠。

我做了:

打开test.txt文件,写入数据 打开test.txt文件,读取数据

所以我没有在1点后关闭文件。

我添加了

outfile.close()

现在起作用了

检查文件的编码格式,读取文件时使用相应的编码格式。它会解决你的问题。

with open("AB.json", encoding='utf-8', errors='ignore') as json_data:
     data = json.load(json_data, strict=False)

对我来说,它没有在请求中使用身份验证。