duan0427 2018-04-09 07:50
浏览 82
已采纳

Yii2为ajax搜索字段创建多语言网站

I'm using Yii2 and I want to create a web application with the ability to perform fast searches.
For example, when I type characters in a textbox, results displayed.
It's easy with ajax when we have only one language but how about in multilingual mode?

  • 写回答

1条回答 默认 最新

  • dongzong5017 2018-04-09 08:13
    关注

    First set up multi language for your site there is doc for this.

    Best way of auto support multi language for your site is using cookies variable for language. You can set up language cookies from any action as

       public function actionLanguage()
    {
        if (isset($_POST['lang'])) {
            $language = $_POST['lang'];
    
            if (($langaugeModel = \app\models\Langauge::findOne(['name' => $language])) !== null) {
                $varLang = [
                        'id' => $langaugeModel->id,
                        'name' => $langaugeModel->name,
                        'iso1' => $langaugeModel->iso1,
                        'iso2' => $langaugeModel->iso2
                    ];
                $cookies = new Cookie([
                    'name' => 'lang',
                    'value' => json_encode($varLang),
                ]);
                yii::$app->getResponse()->getCookies()->add($cookies);
                return $this->goBack((!empty(Yii::$app->request->referrer) ? Yii::$app->request->referrer : null));
            } else {
                throw new NotFoundHttpException('The requested langauge does not exist.');
            }
    
        } else {
                return $this->goBack((!empty(Yii::$app->request->referrer) ? Yii::$app->request->referrer : null));
        }
    }
    

    Here what I did was i placed all the language support of site in database and generate necessary cookies variable and placed it on client browser.

    Next set up be before request event of your yii2 site in config/web.php file as

     'as beforeRequest' => [
       'class' => 'app\components\MyBehavior',
    ],
    

    then create components\Mybehaviou.php file and place this code

      namespace app\components;
      use yii;
      use yii\base\Behavior;
      class MyBehavior extends Behavior
       {
         public function events(){
           return [
               \yii\web\Application::EVENT_BEFORE_REQUEST => 'myBehavior',
             ];
           }
        public function myBehavior(){
        if (\yii::$app->getRequest()->getCookies()->has('lang')) {
            $langIso = 'sdn';
            \yii::$app->language = $langIso;
            $langaugeVar = \yii::$app->getRequest()->getCookies()->getValue('lang');
    
            $langauge = json_decode($langaugeVar);
            $langIso = $langauge->iso2;
    
            \yii::$app->language = $langIso;
    
        }
      }
    }
    

    This create your site language which depends on client because it depends on cookies of client.

    Then create your search controller according to site language(\yii::$app->language)

    for ajax search you can use select2 Widget. you can find demo and configuration on this link

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 socket通信实现多人聊天室疑惑
  • ¥15 DEV-C++编译缺失
  • ¥33 找熟练码农写段Pyhthon程序
  • ¥100 怎么让数据库字段自动更新
  • ¥15 antv g6 力导向图布局
  • ¥15 quartz框架,No record found for selection of Trigger with key
  • ¥15 锅炉建模+优化算法,遗传算法优化锅炉燃烧模型,ls-svm会搞,后面的智能算法不会
  • ¥20 MATLAB多目标优化问题求解
  • ¥15 windows2003服务器按你VPN教程设置后,本地win10如何连接?
  • ¥15 求一阶微分方程的幂级数