这个指令对我来说效果很好:
my1040pr.directive('myCurrency', function () {
return {
require: 'ngModel',
restrict: 'A',
link: function($scope, $element, $attrs) {
$element.bind('change', function() {
$element.formatCurrency({
roundToDecimalPlace: -2,
colorize: true
});
});
}
};
});
但是当我使用对 API 的 $resource 调用更新 Scope 模型时,模型会正确填充数据,但是应该在“更改”事件的指令中应用的货币掩码没有得到应用...任何帮助将不胜感激...
_e