Delphi TIDHttp 获取错误
我刚刚发现 tidhttp 组件中的一个错误。场景是这样的,我创建一个小的来使用 tidhttp get 获取网站页面。我在 eBay 上尝试过,一切正常,现在在 eBay 上尝试了亚马逊,这就是我遇到问题的地方。我这边发生的事情是我在亚马逊搜索项目“lenovolaptop”并复制第二页的网址并将其粘贴到我的小应用程序中,发生的情况是它总是获得第一页,即使我使用的网址是第二页。你们中有人遇到过这种情况吗?请参阅我在下面的链接中使用的源代码。该来源默认为亚马逊第二页。提前谢谢你们了。
I just discovered a bug in tidhttp component. The scenario is this, im creating a small to fetch the pages of website using tidhttp get. I tried it in ebay all is ok, now after ebay i tried amazon thats where i encountered a problem. What happenned on my side is i searched for item "lenovo laptop" in amazon and copied the url of the second page and paste it in my small app, and whats happenning is it always gets the first page even if the url i used is the second page. Does anyone of you encountered this please see the source code i used in the link below. This source is defaulted to second page of amazon. Thanks you guys in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您使用什么版本的印地?当我使用当前的 Indy 10.5.8 快照版本尝试时,您的代码对我来说工作正常。
如果服务器返回成功回复,TIdHTTP.Get() 会保存服务器解码后发送的任何数据。如果您没有看到预期的数据,则很可能是当您尝试直接访问第二页时,Amazon 将 TIdHTTP 重定向回第一页,或者意外发送了第一页的数据。不管怎样,我严重怀疑这是 TIdHTTP 本身的错误。
What version of Indy are you using? your code works fine for me as-is when I try it with the current Indy 10.5.8 snapshot release.
If the server returns a success reply, TIdHTTP.Get() saves whatever data the server decodes to send. If you are not seeing the data you are expecting, chances are that Amazon is either redirecting TIdHTTP back to the first page when you try to access the second page directly, or it is sending the first page's data by accident. Either way, I seriously doubt this is a bug in TIdHTTP itself.