从网站链接到运输跟踪?

发布于 2024-08-11 04:45:53 字数 78 浏览 4 评论 0原文

当客户查看订单时。我们向他们展示承运商和追踪号码。但基于这些信息,有没有办法生成直接指向该承运商/货件的跟踪页面的链接?

谢谢

When a customer views an order. We show them the carrier and the tracking number. But based on this information is there a way to generate a link directly to the tracking page for that carrier/shipment?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

小傻瓜 2024-08-18 04:45:53

绝对地;我认为你最大的障碍是获得正确的链接显示格式。

以下是我们用于 UPS 的内容;这是C#,但在php中一定有类似的东西:

hypTracking.Text = TrackingNumber;

hypTracking.NavigateUrl = string.Format("http://wwwapps.ups.com/ etracking/tracking.cgi?InquiryNumber1={0}&track=Track&TypeOfInquiryNumber=T", TrackingNumber);

将其包装在 switch 语句中(例如显示 UPS 的一种格式,FedEx 的另一种格式,USPS 的另一种格式),您应该已准备就绪。

Absolutely; I would think your biggest obstacle would be getting the proper format for the link to display.

Here's what we use for UPS; it's C#, but there must be something comparable in php:

hypTracking.Text = TrackingNumber;

hypTracking.NavigateUrl = string.Format("http://wwwapps.ups.com/etracking/tracking.cgi?InquiryNumber1={0}&track=Track&TypeOfInquiryNumber=T", TrackingNumber);

wrap that in a switch statement (say show one format for UPS, another for FedEx, and another for USPS) and you should be all set.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文