Rails 3:如何存储屏幕分辨率?
我想在用户登录时将用户的屏幕分辨率存储在数据库中。用户登录时如何检测并存储到数据库?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 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.