关于列表索引的问题
新手一枚,问题出在如图所示,实在不知道问题出在哪里了~rep=requests.post(url=url,data=dada,headers=headers)
cp=rep.headers
o="kie': '(.*?); pa"
a = re.findall(o,str(cp))
cookies=a
if cookies!="":
print("cookies获取成功!")
spid=input("输入商品ID:")
urll = "http://gx.zhongminzaixian.com/admin/goods/list?page=1&pageSize=10&goods_ids="+spid+"&goods_name=&code=&supplier_id=&brand_id=&price_type=market_price&profit_type=cost_profit_percent&status=1"
spxx=requests.get(url=urll,headers=headers,cookies=cookies)
print(spxx.text)
else:
print("cookies获取失败请重新再试!")
提示的错误:
cookiejar_from_dict
cookiejar.set_cookie(create_cookie(name, cookie_dict))
TypeError: string indices must be integers
代码不全,报错内容说字符串索引必须是整数,也就是你的字符串索引值不为整数,检查检查
没有导入requests模块啊 而且好像还没有名为 “ url ” 的变量
页:
[1]