使用 Django 和 Python 3 检测移动设备

Posted

技术标签:

【中文标题】使用 Django 和 Python 3 检测移动设备【英文标题】:Detect mobile devices with Django and Python 3 【发布时间】:2017-07-05 12:38:55 【问题描述】:

我正在努力寻找一种简单的方法来检测请求是否来自我的 Django 视图中的移动设备。

我正在尝试实现这样的东西:

#views.py

def myfunction(request):

    ...
    if request.mobile:
        is_mobile = True
    else:
        is_mobile = False

    context = 
        ... ,
        'is_mobile': is_mobile,
    
    return render(request, 'mytemplate.html', context)

mytemplate.html:

% if is_mobile %    
    show something
% else %
    show something else
% endif %

在我检查过的所有地方(例如here 或here),推荐minidetector。我安装了不同的版本:pip install minidetectorpip install minidetector2,以及直接安装了几个 github 存储库,但没有一个与 Python 3 兼容。

所以我的问题是:是否有任何与 Python 3 兼容的 minidetector 版本/分支?如果没有,有什么替代方案?

【问题讨论】:

您已链接到一个无关的 AttributeError 问题。发布您的堆栈跟踪 该链接旨在表明 minidetector 与 Python 3 不兼容。我已将其删除并重新表述了该部分,以避免对问题本身造成任何混淆。 我建议检查How to detect browser type in Django? 【参考方案1】:

Django User Agents 包与 Python 3 兼容。

按照上面提供的链接中的安装说明进行操作,然后您就可以按如下方式使用它:

def my_view(request):

    # Let's assume that the visitor uses an iPhone...
    request.user_agent.is_mobile # returns True
    request.user_agent.is_tablet # returns False
    request.user_agent.is_touch_capable # returns True
    request.user_agent.is_pc # returns False
    request.user_agent.is_bot # returns False

    # Accessing user agent's browser attributes
    request.user_agent.browser  # returns Browser(family=u'Mobile Safari', version=(5, 1), version_string='5.1')
    request.user_agent.browser.family  # returns 'Mobile Safari'
    request.user_agent.browser.version  # returns (5, 1)
    request.user_agent.browser.version_string   # returns '5.1'

    # Operating System properties
    request.user_agent.os  # returns OperatingSystem(family=u'ios', version=(5, 1), version_string='5.1')
    request.user_agent.os.family  # returns 'iOS'
    request.user_agent.os.version  # returns (5, 1)
    request.user_agent.os.version_string  # returns '5.1'

    # Device properties
    request.user_agent.device  # returns Device(family='iPhone')
    request.user_agent.device.family  # returns 'iPhone'

模板中的用法如下:

% if request.user_agent.is_mobile %
    Do stuff here...
% endif %

但是,请注意中间件类在 Django 1.10 中发生了变化。因此,如果您使用的是 Django 1.10 +,则必须修改此包中的中间件类定义,如 GitHub issue tracker page 中给出的那样。

【讨论】:

上次签到是 2019 年 6 月,用于 Django 2.2。 ://【参考方案2】:

我找到了另一种方式,从this answer开始。

通过在views.py 中添加一个附加函数:

import re

def mobile(request):
"""Return True if the request comes from a mobile device."""

    MOBILE_AGENT_RE=re.compile(r".*(iphone|mobile|androidtouch)",re.IGNORECASE)

    if MOBILE_AGENT_RE.match(request.META['HTTP_USER_AGENT']):
        return True
    else:
        return False


def myfunction(request):

    ...
    if mobile(request):
        is_mobile = True
    else:
        is_mobile = False

    context = 
        ... ,
        'is_mobile': is_mobile,
    
    return render(request, 'mytemplate.html', context)

【讨论】:

我更喜欢这个而不是另一个答案;由于额外的中间件,没有额外的开销。

以上是关于使用 Django 和 Python 3 检测移动设备的主要内容,如果未能解决你的问题,请参考以下文章

Django

Python笔记22——飞机大战(下)

Django中的Python社交身份验证,makemigrations检测到没有变化

Python开发环境:启动Eclipse时检测到PYTHONPATH发生改变

使用 HTML/Django 调用 python 函数

linux安装配置python环境以及虚拟环境和django下载