这是我创建的依赖于 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 解决方案。