欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

laravel 动态多语言切换功能 有大用 有大大用

 

laravel 动态多语言切换功能

2018年06月08日 12:37:24 a_polo 阅读数:491            


laravel支持多语言功能,看了官网的文档一脸懵,测试了一下发现只能设置单个URL的语言设置。之前看过一些项目使用地址栏的参数来判断当前语言,不过感觉会比较麻烦。这里分享一个用session判断当前语言的方法。

1. 在模板中设置切换语言的<a>

  1. <a href="{{ url('/changeLocale/en') }}">en</a>                        
  2. <a href="{{ url('/changeLocale/zh') }}">zh</a>                        
           

2. 在routes/web.php中创建一个get路由

  1. //修改语言                        
  2. Route::get('/changeLocale/{locale}', 'HomeController@changeLocale')
           

3. 在app/Http/HomeController.php中创建changeLocale方法

  1. public function changeLocale($locale)                        
  2. {
  3. if (in_array($locale, ['en', 'zh'])) {
  4. session()->put('locale', $locale);
  5. }
  6. return redirect()
  7. ->back()
  8. ->withInput();
  9. }
           

这里通过session将当前的语言存起来

4. 创建中间件执行一下命令

php artisan make:middleware SetLocale
           

打开app/Http/Middleware/SetLocale.php修改handle方法

  1. public function handle($request, Closure $next)                        
  2. {
  3. if (Session::has('locale') && in_array(Session::get('locale'), ['en', 'zh'])) {
  4. App::setLocale(Session::get('locale'));
  5. } else {
  6. App::setLocale('en');
  7. }
  8. return $next($request);
  9. }
           

再在app/Http/Kernel.php

修改以下

  1. protected $routeMiddleware = [
  2. ...
  3. 'setLocale' => \App\Http\Middleware\SetLocale::class,
  4. ...
  5. ];
           

最后将中间件setLocale加入其他路由中

  1. //根据session值设置语言                        
  2. Route::group(['middleware' => ['setLocale']], function() {
  3. Route::get('/', 'HomeController@index');
  4. });
           

点击模板中的<a>就可以了


    


 

作者:a_polo 

来源:CSDN 

原文:https://blog.csdn.net/weixin_36825982/article/details/80621502 

版权声明:本文为博主原创文章,转载请附上博文链接!    


来自  https://blog.csdn.net/weixin_36825982/article/details/80621502



laravel 多语言切换

2018年07月02日 16:21:33 YuYan_wang 阅读数:225            


版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/YuYan_wang/article/details/80885744


               

1、创建翻译文件                

翻译文件所在目录为resources/lang,在此创建 zh/lang.php文件(在此创建的为中文)


               


               

return [

    'username'=>'用户名',

    'password'=>'密码',

    'rememberme'=>'记住密码',

    'login'=>'登录',

    'badpassword' => '用户名或密码错误.',

]
               


               


               

2、创建中间件                

创建中间件  `php artisan make:middleware lang` 
               


               


                

public function handle($request, Closure $next)
{
    //判断是否存在session
    if ($request->session()->has('lang')) {
        $lang=Session::get('lang');
        if(App::getLocale() != $lang) {
            App::setLocale($lang);
        }
    }else{
        //判断系统语言
        if(strrpos(strtolower($_SERVER['HTTP_ACCEPT_LANGUAGE']), 'zh-cn') !== false) {
            if(App::getLocale() != 'cn'){
                App::setLocale('cn');
            }
        }
        else
        {
            if(App::getLocale() != 'en') {
                App::setLocale('en');
            }
        }
    }

    return $next($request);
}

               


               

3、在代码中实现 使用 trans()方法  实现本地化显示                

               

 <div class="form-group">
 <label class="col-lg-4 control-label">{{trans('auth.username')}}</label>
     <div class="col-lg-6">
         <input type="text" class="form-control" name="name" value="{{old('name')}}" autofocus/>
     </div>
</div>


               


               


               

4、页面实时切换 中英文
               

通过ajax传入后台修改,并存入Session中


               

/**
 * 语言切换
 *
 * 修改 locale 配置
 */
public function lang($type='cn'){

    if($type !== 'cn' && $type !=='en'){
        $type='cn';
    }
    config(['app.locale' => $type]);
    if(config('app.locale') == $type){
        session(['lang' => $type]);
        $array=array('status'=>'1');
    }else{
        $array=array('status'=>'0');
    }
    return json_encode($array);
}
           


来自  https://blog.csdn.net/yuyan_wang/article/details/80885744

普通分类: