tychxn / jd-assistant

京东抢购助手:包含登录,查询商品库存/价格,添加/清空购物车,抢购商品(下单),查询订单等功能
MIT License
5.18k stars 1.92k forks source link

查询订单出现list index out of range是什么错误呢? #140

Open SXM1738 opened 4 years ago

tychxn commented 4 years ago

可能是html页面变化了,特别是一些组合订单的解析没有完全cover到。。抽空再修复🤦‍♂️

SXM1738 commented 4 years ago

非常感谢您的回复,我再调试一下,看看问题怎么解决。

------------------ 原始邮件 ------------------ 发件人: "Tychxn"<notifications@github.com>; 发送时间: 2020年5月29日(星期五) 上午10:54 收件人: "tychxn/jd-assistant"<jd-assistant@noreply.github.com>; 抄送: "1332041707"<1332041707@qq.com>;"Author"<author@noreply.github.com>; 主题: Re: [tychxn/jd-assistant] 查询订单出现list index out of range是什么错误呢? (#140)

可能是html页面变化了,特别是一些组合订单的解析没有完全cover到。。抽空再修复🤦‍♂️

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub, or unsubscribe.

linechina commented 4 years ago

1064行 pay_method = get_tag_value(spans, index=1) 改成 pay_method = get_tag_value(spans, index=0)

linechina commented 4 years ago

No description provided.

非常感谢您的回复,我再调试一下,看看问题怎么解决。 ------------------ 原始邮件 ------------------ 发件人: "Tychxn"<notifications@github.com>; 发送时间: 2020年5月29日(星期五) 上午10:54 收件人: "tychxn/jd-assistant"<jd-assistant@noreply.github.com>; 抄送: "1332041707"<1332041707@qq.com>;"Author"<author@noreply.github.com>; 主题: Re: [tychxn/jd-assistant] 查询订单出现list index out of range是什么错误呢? (#140) 可能是html页面变化了,特别是一些组合订单的解析没有完全cover到。。抽空再修复🤦‍♂️ — You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub, or unsubscribe.

1064行 pay_method = get_tag_value(spans, index=1) 改成 pay_method = get_tag_value(spans, index=0)

SXM1738 commented 4 years ago

1064行 pay_method = get_tag_value(spans, index=1) 改成 pay_method = get_tag_value(spans, index=0) 的确是这里的问题,调试的时候执行到这里就出错。。。。。