我正在尝试使用http://jquerypriceformat.com/为欧盟货币字段创建输入掩码
到目前为止,在我的指令中,输入正确显示给应用了掩码的用户,但我认为有问题,因为 POST 值以奇怪的格式发送,与我们在输入字段中看到的完全不同。
我包括 priceformat.js
<script src="js/jquery.price_format.1.8.min.js"></script>
<input type="text" currency-input ng-model...>
在角度上:
app.directive('currencyInput', function() {
return {
require: '?ngModel',
link: function($scope, element, attrs, controller) {
element.priceFormat({
prefix: '',
centsSeparator: ',',
thousandsSeparator: '.'
});
}
};
});
我的输入正确显示了带有掩码的值,但是在 POST 数据(由角度调用)上它是一个不同的值,我错过了什么?
输入 > 2.200,80 | 帖子 > 22,0080
谢谢