5

我想在 m routes.php 文件上使用 Mobile Detect。我已在 composer.json 中将包添加为要求,并将其安装在供应商文件中。我现在如何使用它?

我尝试了这个答案但没有运气,因为找不到该类:Laravel 4 using vendor classes

{
    "name": "laravel/laravel",
    "description": "The Laravel Framework.",
    "keywords": ["framework", "laravel"],
    "license": "MIT",
    "require": {
        "laravel/framework": "4.2.*",
        "mobiledetect/mobiledetectlib": "*"
    },
    "autoload": {
        "classmap": [
            "app/commands",
            "app/controllers",
            "app/models",
            "app/database/migrations",
            "app/database/seeds",
            "app/tests/TestCase.php"
        ]
    },
    "scripts": {
        "post-install-cmd": [
            "php artisan clear-compiled",
            "php artisan optimize"
        ],
        "post-update-cmd": [
            "php artisan clear-compiled",
            "php artisan optimize"
        ],
        "post-create-project-cmd": [
            "php artisan key:generate"
        ]
    },
    "config": {
        "preferred-install": "dist"
    },
    "minimum-stability": "stable"
}

编辑:我尝试使用这个:https ://github.com/jenssegers/Laravel-Agent ,但别名从来没有工作过,说找不到类。

4

2 回答 2

8

这个包是PSR-0命名空间的。查看 git 存储库,您似乎Detection\MobileDetect 希望确保这确实是正确的 namespace。您是否尝试将正确的命名空间添加到您的routes.php文件中?

use Detection\MobileDetect as MobileDetect;

或者您可以引用正确的内联命名空间。这是一个例子:

$detect = new Detection\MobileDetect\Mobile_Detect;
$deviceType = ($detect->isMobile() ? ($detect->isTablet() ? 'tablet' : 'phone') : 'computer');

如果这对您不起作用,您可以通过将其添加到您的类图来composer.json摆脱:

"autoload": {
    "classmap": ["/vendor/serbanghita/namespaced/"],
}

当然,填写正确的路径然后运行composer dump-auto​​.

于 2014-10-17T19:56:48.080 回答
1

我也在为 Laravel 中的移动检测而苦苦挣扎,但我找到了解决方案!这是从一开始(包括安装):

  • 在 Laravel 项目文件夹的终端中:

    $ composer require mobiledetect/mobiledetectlib
    
  • 在用于移动检测的中间件文件中:

    use Mobile_Detect;
    
    ...
    
    $detect = new Mobile_Detect;
    
    if ($detect->isMobile()) var_dump('is mobile');
    else var_dump('is not mobile');
    

你准备好了;)

于 2016-10-07T08:33:59.287 回答