美国和英国网站如何处理
我们有两套价格:美元和英镑。
我怎样才能最好地处理这个问题。
我是否应该有一个包含美国站点的文件夹,以便当用户单击美国国旗时,他们会转到 mydomain.com/us,然后从那里导航。
或者我可以做一些更简单的事情?
HTML 网站在订购时将用户传递到我们的客户端系统,因此不需要货币转换等。只是想了解如何处理以美元和英镑显示网站的建议。
We have 2 sets of prices, $ and £'s.
How best can I handle this.
Should I have a folder with the US site in so when users click on the US flag they go to mydomain.com/us and then navigate from there.
Or is there something simpler I can do?
The HTML site passes users over to our client system when ordering so currency conversion etc isnt needed. Just want advice on how to handle displaying a site in dollars and pounds.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您的用户表中有一个国家/地区字段,您可以使用该值来确定要显示的符号和价格。
If you have a country field on your user's table you could use this value to determine what symbol and prices to show.
如果您想在不生成任何服务器端页面的情况下保持简单,请使用一些 JavaScript。选择一种默认货币并允许用户单击“美国”或“英国”以切换到另一种货币。 Javascript可用于设置cookie,以便当用户重新访问网站或查看其他页面时,可以自动设置首选货币。
有几种不同的方法可以执行转换,这可能主要取决于您自己如何进行转换。如果您仅使用当前汇率,则将每个项目的价格存储在表中,然后将汇率作为转换函数的一部分应用。
If you are trying to keep it really simple without any server-side page generation use a bit of JavaScript. Pick a default currency and allow the user to click US or UK to switch to the other one. Javascript can be used to set a cookie so that when the user revisits the website, or views other pages, you can automatically set the preferred currency.
There are a few different ways to perform the conversion, and it probably depends most on how you do the conversion yourself. If you are just going by a current exchange rate store the prices in one currency for each item in a table and then have it apply the exchange rate as part of your conversion function.