Rails 3:如何存储屏幕分辨率?

发布于 2024-10-07 22:06:52 字数 49 浏览 3 评论 0原文

我想在用户登录时将用户的屏幕分辨率存储在数据库中。用户登录时如何检测并存储到数据库?

I want to store user's screen resolution in database when user login. How to detect and store it to database when user login?

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

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

发布评论

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

评论(1

丶视觉 2024-10-14 22:06:52

使用 JavaScript 读取(浏览器不发送默认情况下屏幕分辨率信息,因此它不可用于 Ruby 或任何其他服务器端,除非您这样做),然后 生成隐藏输入,根据您收集的数据设置名称和值,然后将其添加到包含用户名和密码输入的表单

哦,您可能会发现窗口大小比屏幕分辨率更有用。并不是每个人都最大化他们的窗口。

Read it with JavaScript (browsers don't send screen resolution information by default, so it isn't available to Ruby or anything else server side unless you make it so), then generate a hidden input, set the name and value based on the data you've gathered, then add it to the form containing the username and password inputs.

Oh, and you might find the window size more useful than the screen resolution. Not everybody maximizes their windows.

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