この猫の皮を剥ぐ方法は何千もあります。具体的に {{}} の間について質問されていることは承知していますが、ここに来る他の人のために、他のオプションのいくつかを示す価値があると思います。
$scope で機能します(IMO、これはほとんどのシナリオで最善の策です):
app.controller('MyCtrl', function($scope) {
$scope.foo = 1;
$scope.showSomething = function(input) {
return input == 1 ? 'Foo' : 'Bar';
};
});
<span>{{showSomething(foo)}}</span>
もちろん ng-show と ng-hide:
<span ng-show="foo == 1">Foo</span><span ng-hide="foo == 1">Bar</span>
ngSwitch
<div ng-switch on="foo">
<span ng-switch-when="1">Foo</span>
<span ng-switch-when="2">Bar</span>
<span ng-switch-default>What?</span>
</div>
バートランドが提案したカスタム フィルター。(同じことを何度も繰り返さなければならない場合は、これが最良の選択です)
app.filter('myFilter', function() {
return function(input) {
return input == 1 ? 'Foo' : 'Bar';
}
}
{{foo | myFilter}}
またはカスタム ディレクティブ:
app.directive('myDirective', function() {
return {
restrict: 'E',
replace: true,
link: function(scope, elem, attrs) {
scope.$watch(attrs.value, function(v) {
elem.text(v == 1 ? 'Foo': 'Bar');
});
}
};
});
<my-directive value="foo"></my-directive>
個人的には、ほとんどの場合、スコープに関数を使用します。これにより、マークアップがきれいに保たれ、すばやく簡単に実装できます。ただし、まったく同じことを何度も繰り返す場合は、Bertrand の提案に従い、状況に応じてフィルターまたはディレクティブを作成します。
いつものように、最も重要なことは、ソリューションが保守しやすく、できればテスト可能であることです。そして、それはあなたの特定の状況に完全に依存するでしょう.