これは私が作成した jQuery に依存するソリューションです (さらに悪いことに、eval!):
angular.module('app', [])
.directive('displayFormat', function () {
return function (scope, element, attr) {
$(element).focus(function () {
$(this).val(eval('scope.' + $(this).attr('ng-model')));
});
$(element).blur(function () {
var modelValue = parseFloat(eval('scope.' + $(this).attr('ng-model')));
if (attr["displayFormat"] == 'currency') $(this).val('$' + modelValue.numberFormat(2));
if (attr["displayFormat"] == 'percentage') $(this).val((modelValue * 100) + '%');
});
};
});
Number.prototype.numberFormat = function (decimals, dec_point, thousands_sep) {
dec_point = typeof dec_point !== 'undefined' ? dec_point : '.';
thousands_sep = typeof thousands_sep !== 'undefined' ? thousands_sep : ',';
var parts = this.toFixed(decimals).toString().split('.');
parts[0] = parts[0].replace(/\B(?=(\d{3})+(?!\d))/g, thousands_sep);
return parts.join(dec_point);
}
次に、コントローラーで:
$scope.$watch(function () {
$('input').not(':focus').blur();
});
次に、入力フィールド:
<input type="text" ng-model="myVariable" display-format="currency">
(実際のアプリケーションでは、通貨以外の表示形式のオプションを実装します)
ただし、jQuery以外のソリューションが必要です。