目前我正在尝试将一个字节数组发送到web服务,但是我收到错误消息,即bytearray不可序列化:
TypeError:bytearray(b'')不是JSON可序列化的
我正在使用以下代码
发送请求
# Set blob
with open('demo-file.txt') as file:
f = file.read()
b = bytearray(f)
print a.set_data('5cb9bc4d-c0fd-40ab-8b74-4e62b50d8966', b)
Set_Data方法:
def set_data(self, path, data):
"""
Save data in
Parameter
--------
path (str): Path as string
data (bytearray): Data as bytearray
"""
result = requests.post(self.url + '/set', json = { 'path': path, 'data': data})
# Check status and token
if result.status_code == 200:
return result.text
我做错了什么,我是否必须使用其他一些方法来发送字节数?
非常感谢你!