我正在使用请求库来解析数据,它返回json数据列表 当我试图找到响应列表的长度时,它给出了错误 TypeError:类型为“ Response”的对象没有len() 我正在使用这种方法
import requests
r=requests.get('http://localhost:3000/api/Customer')
print(r.status_code)
print(r.text)
x={}
for i in range(0,len(r)):
x = r.json()[i]
print(x)
通过使用此即时错误 TypeError:“ Response”类型的对象没有len()
答案 0 :(得分:2)
您应该在render(){
return html`
<p>${this.values.map(value => { return value + 1; })}</p>
`;
}
返回的列表对象上使用len
:
r.json()
但是您应该简单地遍历列表:
lst = r.json()
for i in range(len(lst)):
x = lst[i]
print(x)