6

我正在使用 AngularJS$rootScope对象来公开一些控制器和视图都需要访问的全局常量:

var app = angular.module('myApp', []);

app.run(function ($rootScope) {
    $rootScope.myConstant = 2;
});

当我尝试在视图中呈现全局值时,它可以正常工作:

{{myConstant}}

同样,如果我在某个条件下引用全局值,ng-if它也可以工作:

<span ng-if="someValue == myConstant">Conditional content</span>.

但是,当尝试在一个ng-switch块中使用相同的值进行比较时,它永远不会评估为真。这个 JSFiddle展示了我试图让它工作的尝试。我还尝试将常量值显式引用$rootScope为表达式的成员和表达式(在双花括号内),但没有任何效果。

任何想法我做错了什么?

谢谢,

蒂姆

4

2 回答 2

5

而不是尝试设置ng-switch-when,您可以自定义ng-switch-on表达式以便在myConstant等于时产生特定值item.value

<span ng-switch on="{true:'const', false: item.value}[myConstant == item.value]">
    <span ng-switch-when="const">
        <span class="blue">{{item.name}}</span> (emphasis applied by ng-switch) 
    </span>
    <span ng-switch-when="4">
        <span class="red">{{item.name}}</span> (emphasis applied by ng-switch) 
    </span>
    <span ng-switch-default>
        {{item.name}}
    </span>
</span>

工作示例

于 2013-09-03T14:37:21.840 回答
1

你总是可以自己动手...... :)

(不知道这是多么有效,而且我刚刚写的还没有经过很好的测试)

http://jsfiddle.net/H45zJ/1/

app.directive('wljSwitch', function () {
    return {
        controller: function ($scope) {
            var _value;
            this.getValue = function () {
                return _value;
            };
            this.setValue = function (value) {
                _value = value;
            };

            var _whensCount = 0;
            this.addWhen = function (value) {
                _whensCount++;
            }
            this.removeWhen = function (value) {
                _whensCount--;
            }
            this.hasWhens = function () {
                return _whensCount < -1;
            };
        },
        link: function (scope, element, attrs, controller) {
            scope.$watch(function () {
                return scope.$eval(attrs.wljSwitchOn);
            }, function (value) {
                controller.setValue(value);
            });
        }
    };   
});

app.directive('wljSwitchWhen', function () {
    return {
        require: '^wljSwitch',
        template: '<span ng-transclude></span>',
        transclude: true,
        replace: true,
        link: function (scope, element, attrs, controller) {
            scope.$watch(function () {
                return controller.getValue() === scope.$eval(attrs.wljSwitchWhen);
            }, function (value) {
                if (value) {
                    controller.addWhen();           
                } else { 
                    controller.removeWhen();      
                }
                element.attr('style', value ? '' : 'display:none;');
            });
        }
    };   
});

app.directive('wljSwitchDefault', function () {
    return {
        require: '^wljSwitch',
        template: '<span ng-transclude></span>',
        transclude: true,
        replace: true,
        link: function (scope, element, attrs, controller) {
            scope.$watch(controller.hasWhens, function (value) {
                element.attr('style', value ? '' : 'display:none;');
            });
        }
    };   
});
于 2013-09-03T15:57:15.057 回答