python 使用 delete 方法時報錯,可以正常刪除
testcase/test_organization.py:34 (TestOrganization.test_delete)
self =
def test_delete(self):
print(self.organization.delete(119))
test_organization.py:36:
…/api/organization.py:59: in delete
return self.send(data)
…/api/base_api.py:14: in send
return requests.request(**data).json()
…/env/lib/python3.7/site-packages/requests/models.py:898: in json
return complexjson.loads(self.text, **kwargs)
…/env/lib/python3.7/site-packages/simplejson/init.py:525: in loads
return _default_decoder.decode(s)
…/env/lib/python3.7/site-packages/simplejson/decoder.py:370: in decode
obj, end = self.raw_decode(s)
self = , s = ‘’
idx = 0, _w =
_PY3 = True
def raw_decode(self, s, idx=0, _w=WHITESPACE.match, _PY3=PY3):
"""Decode a JSON document from s
(a str
or unicode
beginning with a JSON document) and return a 2-tuple of the Python
representation and the index in s
where the document ended.
Optionally, idx
can be used to specify an offset in s
where
the JSON document begins.
This can be used to decode a JSON document from a string that may
have extraneous data at the end.
"""
if idx < 0:
# Ensure that raw_decode bails on negative indexes, the regex
# would otherwise mask this behavior. #98
raise JSONDecodeError('Expecting value', s, idx)
if _PY3 and not isinstance(s, str):
raise TypeError("Input string must be text, not bytes")
# strip UTF-8 bom
if len(s) > idx:
ord0 = ord(s[idx])
if ord0 == 0xfeff:
idx += 1
elif ord0 == 0xef and s[idx:idx + 3] == '\xef\xbb\xbf':
idx += 3
return self.scan_once(s, idx=_w(s, idx).end())
E simplejson.errors.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
…/env/lib/python3.7/site-packages/simplejson/decoder.py:400: JSONDecodeError
Assertion failed
Assertion failed
相關文章
- MySQL防止delete命令刪除資料的兩種方法MySqldelete
- Oracle 刪除千萬級資料量時,可以考慮以下方法來提高刪除效率Oracle
- SpringBoot配置檔案使用yml格式時報錯,使用properties格式時正常Spring Boot
- [20180409]delete刪除緩慢分析.txtdelete
- delete和truncate刪除的區別delete
- 使用delete刪除陣列,其長度會改變嗎?delete陣列
- Python 程式碼除錯—使用 pdb 除錯Python除錯
- Mysql資料庫delete刪除後資料恢復報告MySql資料庫delete資料恢復
- windows.old可以刪除嗎?windows.old檔案的刪除方法Windows
- vscode使用chrome除錯報錯VSCodeChrome除錯
- python列表刪除專案的方法Python
- mysql支援跨表delete刪除多表記錄MySqldelete
- Shift + Delete刪除的檔案如何恢復?delete
- laravel 修改軟刪為:0(正常)、1(刪除) 的形式Laravel
- Python列表刪除元素的方法有哪些?Python
- c盤使用者裡的東西可以刪除麼 c盤使用者資料夾可以刪除嗎
- list增強for迴圈刪除元素報錯
- python五種除錯或排錯的方法Python除錯
- 簡單幾步教你win10按delete鍵刪除不提示的方法Win10delete
- Linux命令curl去操作delete去刪除資源Linuxdelete
- hibernate配置級聯刪除時報錯:could not execute statement; SQL [n/a]; constraint [null]SQLAINull
- win10 programdata哪些可以刪除_win10 programdata可以刪除嗎Win10
- Java程式中除錯Python程式方法Java除錯Python
- matplotlib使用時報錯RuntimeError: Python is not installed as a framework(一)ErrorPythonFramework
- 使用pdb進行Python除錯Python除錯
- VUE—刪除HelloWorld.vue後報錯 `--fix` option報錯的解決Vue
- Python 中刪除列表元素的三種方法Python
- 同時使用 IB 和 Masonry 時,如何刪除 NSIBPrototypingLayoutConstraintAI
- GDB除錯基礎使用方法除錯
- 【除錯】ftrace(一)基本使用方法除錯
- appium 使用 appium-desktop 可以正常使用,使用命令列啟動報如下錯誤,誰能幫忙看下呢APP命令列
- MySQL在刪除表時I/O錯誤原因分析MySql
- python 除錯Python除錯
- 關於集合遍歷並刪除報錯詳解
- Python字串刪除第一個字元常用的方法!Python字串字元
- Python優雅遍歷字典刪除元素的方法Python
- win10 shift delete刪除的檔案如何恢復Win10delete
- Tomcat啟動後頁面可以正常訪問 介面路徑報錯404Tomcat