我有以下代码通过 Globalize 0.x 添加自定义功能:
Globalize.parseFloatAcceptDotAndComma =
function (value, radix, cultureSelector) {
value = value.replace(Globalize.locale(lang).numberFormat['.'] === '.' ? ',' : '.', Globalize.locale(lang).numberFormat['.']);
return Globalize.parseFloat.call(this, value, radix, cultureSelector);
}
由于 Globalize 1.x 插件的 API 不同,我很想知道如何在新版本的插件中达到相同的效果?
谢谢。
顺便说一句,我已经将此方法包含在“then”链中,在“then(Globalize.load)”之后 - 这是一个正确的方法吗?
更新:最终工作版本 - 感谢@rxaviers
var lang = '@Thread.CurrentThread.CurrentUICulture.Name';
Promise.all([
// Core
fetch('/Scripts/cldr/supplemental/likelySubtags.json'),
// Date
fetch('/Scripts/cldr/main/' + lang + '/ca-gregorian.json'),
fetch('/Scripts/cldr/main/' + lang + '/timeZoneNames.json'),
fetch('/Scripts/cldr/supplemental/timeData.json'),
fetch('/Scripts/cldr/supplemental/weekData.json'),
// Number
fetch('/Scripts/cldr/main/' + lang + '/numbers.json'),
fetch('/Scripts/cldr/supplemental/numberingSystems.json')
])
.then(function(responses) {
return Promise.all(responses.map(function(response) {
return response.json();
}));
})
.then(Globalize.load)
.then(function () {
Globalize.parseFloatAcceptDotAndComma =
Globalize.prototype.parseFloatAcceptDotAndComma = function(value, options) {
// Assert that value and options are valid.
// Assert that this.cldr is present
if (value.indexOf('.') >= 0 && value.indexOf(',') >= 0) {
throw new Error('Both separators are present');
}
value = value.replace(/[,.]/, this.cldr.main('numbers/symbols-numberSystem-latn/decimal'));
return this.parseNumber(value, options);
}
})
.then(function() { Globalize.locale(lang); });