laravel 5在控制器中获得默认语言


laravel 5 get default language in controller

我是laravel 5的新手,我在主控制器中添加了一行:

echo Lang::getLocale();

但是出现了一个错误:

FatalErrorException in HomeController.php line 47:
Class 'App'Http'Controllers'Lang' not found


<?php namespace App'Http'Controllers;
use App'Article;
use App'Photo;
use App'VideoAlbum;
use App'PhotoAlbum;
use Illuminate'Database'Eloquent;
use Illuminate'Support'Facades'DB;
class HomeController extends Controller {
    /*
    |--------------------------------------------------------------------------
    | Home Controller
    |--------------------------------------------------------------------------
    |
    | This controller renders your application's "dashboard" for users that
    | are authenticated. Of course, you are free to change or remove the
    | controller as you wish. It is just here to get your app started!
    |
    */
    /**
     * Create a new controller instance.
     *
     * @return void
     */
    public function __construct()
    {
        //$this->middleware('auth');
        //parent::__construct();
        //$this->news = $news;
        //$this->user = $user;
    }

    /**
     * Show the application dashboard to the user.
     *
     * @return Response
     */
    public function index()
    {
        //echo Lang::getLocale();
        $articles = Article::with('author')->orderBy('position', 'DESC')->orderBy('created_at', 'DESC')->limit(4)->get();
//      TODO: abstract to model
        $sliders = Photo::join('photo_albums', 'photo_albums.id', '=', 'photos.photo_album_id')->where('photos.slider',
            1)->orderBy('photos.position', 'DESC')->orderBy('photos.created_at', 'DESC')->select('photos.filename',
            'photos.name', 'photos.description', 'photo_albums.folder_id')->get();
        $photoAlbums = PhotoAlbum::select(array(
            'photo_albums.id',
            'photo_albums.name',
            'photo_albums.description',
            'photo_albums.folder_id',
            DB::raw('(select filename from ' . DB::getTablePrefix() . 'photos WHERE album_cover=TRUE and ' . DB::getTablePrefix() . 'photos.photo_album_id=' . DB::getTablePrefix() . 'photo_albums.id LIMIT 1) AS album_image'),
            DB::raw('(select filename from ' . DB::getTablePrefix() . 'photos WHERE ' . DB::getTablePrefix() . 'photos.photo_album_id=' . DB::getTablePrefix() . 'photo_albums.id ORDER BY position ASC, id ASC LIMIT 1) AS album_image_first')
        ))->limit(8)->get();
        $videoAlbums = VideoAlbum::select(array(
            'video_albums.id',
            'video_albums.name',
            'video_albums.description',
            'video_albums.folder_id',
            DB::raw('(select youtube from ' . DB::getTablePrefix() . 'videos WHERE album_cover=TRUE and ' . DB::getTablePrefix() . 'videos.video_album_id=' . DB::getTablePrefix() . 'video_albums.id LIMIT 1) AS album_image'),
            DB::raw('(select youtube from ' . DB::getTablePrefix() . 'videos WHERE ' . DB::getTablePrefix() . 'videos.video_album_id=' . DB::getTablePrefix() . 'video_albums.id ORDER BY position ASC, id ASC LIMIT 1) AS album_image_first')
        ))->limit(8)->get();
        return view('pages.home', compact('articles', 'sliders', 'videoAlbums', 'photoAlbums'));
        //return view('pages.welcome');
    }
}

问题出在哪里?

您必须正确引用Lang别名。要么在顶部导入:

use Lang;

或者在每次调用前加一个反斜杠:

'Lang::getLocale();

您需要添加:

use Illuminate'Support'Facades'Lang;

在扩展控制器之后。就在第一行之后。

use Lang;

你可以做:

$defaultLocale = config('app.locale');

简单,试试这个

app()->getLocale()