flex 4.1 NumberFormatter:配置为仅在数字为浮点数时显示精度为 1

发布于 2024-09-13 20:55:28 字数 321 浏览 7 评论 0原文

目前我使用以下 NumberFormatter:

<mx:NumberFormatter id="numberFormatter" precision="1" useThousandsSeparator="true"  />

因此它将 5.43234234 更改为 5.4。

如果没有精度,我希望 NumberFormatter 不显示任何精度。

这意味着如果数字是 5.0,我希望将其格式化为 5,而不是 5.0。

我怎样才能这样做呢?

使用 Flex 4.1

谢谢

Currently I use the following NumberFormatter:

<mx:NumberFormatter id="numberFormatter" precision="1" useThousandsSeparator="true"  />

so it changes 5.43234234 to 5.4.

I want the NumberFormatter to not show any precision if there isn't one.

which means that if the number is 5.0, i want it to format it to 5, and not to 5.0.

how can I do so?

using flex 4.1

thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

抚笙 2024-09-20 20:55:28

我认为你需要集成你自己的actionscript代码,你不能仅使用MXML标签来做到这一点。比如:

private function toPrecisionOrRound(number:Number, precision:int):String {
  String result = number.toPrecision(int);
  String rounded = number.toFixed(0);
  if (Number(result) == Number(rounded)) {
    // they are equal so the toPrecision must have zeros at end
    return rounded;
  } else {
    return result;
  }
}

我还没有运行过这个,但我认为它会起作用。

I think you need to integrate your own actionscript code, you can't do it with a MXML tag only. Something like:

private function toPrecisionOrRound(number:Number, precision:int):String {
  String result = number.toPrecision(int);
  String rounded = number.toFixed(0);
  if (Number(result) == Number(rounded)) {
    // they are equal so the toPrecision must have zeros at end
    return rounded;
  } else {
    return result;
  }
}

I haven't run this but I reckon it will work.

御弟哥哥 2024-09-20 20:55:28

或者您可以使用此函数包装输出:

private function clearTrailingZero(valueString:String):String {
    return valeString.replace(/\.0/, "");
}

Or you can wrap the output with this function:

private function clearTrailingZero(valueString:String):String {
    return valeString.replace(/\.0/, "");
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文