3

我正在尝试在我的 Angular 项目中使用 i18next ( https://github.com/archer96/ng-i18next ),但它似乎加载得太慢了。这是我的设置:

angular.module('jm.i18next').config(['$i18nextProvider', function ($i18nextProvider) {
    $i18nextProvider.options = {
        lng: 'en',
        fallbackLng: 'en',
        preload: ['en'],
        supportedLngs: ['en'],
        resGetPath: '../locales/__lng__.json',
        useCookie: false,
        useLocalStorage: false,
        defaultLoadingValue: ''
    };
}]);

angular.module('myApp', ['jm.i18next']).controller('MainCtrl', ['$scope', '$i18next', function ($scope, $i18next) {
console.log($i18next("key"));

setTimeout(function() {
    console.log($i18next("key"));
  }, 1000);
}]);

我必须添加一个超时才能有一个值。有没有办法确保在加载控制器时 i18next 已准备就绪?


更新

我正在尝试按类型对锻炼进行分组,使用 $i18next 进行翻译。但这不起作用,因为在控制器完成翻译之前视图已经“准备好”。

<select ng-model="workout" ng-options="workout as workout.name group by workout.type for workout in workouts | orderBy: ['type', 'name']"></select>

$scope.workouts = [
    {id: 1, name: 'Workout 1', type: $i18next("type1")},
    {id: 25, name: 'Workout 2', type: $i18next("type2")},
  ];
4

2 回答 2

1

这解决了我的问题。

angular.module('myApp', ['ngRoute', 'jm.i18next']).
        config(['$routeProvider', function ($routeProvider) {
            $routeProvider.
                when('/route1', {
                    title: 'Route 1',
                    templateUrl: '../views/route1.html',
                    controller: 'Route1Ctrl',
                    resolve: {
                      i18next: function ($i18next) {
                        return $i18next;
                      }
                    }
                });
    }]);
于 2014-10-29T12:43:53.873 回答
0

您还可以收听该i18nextLanguageChange事件:

$scope.$on('i18nextLanguageChange', function () {
  $scope.workouts = [
    {id: 1, name: 'Workout 1', type: $i18next("type1")},
    {id: 25, name: 'Workout 2', type: $i18next("type2")},
  ];
});

您必须以这种方式自己处理其他比赛条件。

于 2016-04-06T14:20:27.377 回答