在 Flutter 中将数字格式化为字符串
Posted
技术标签:
【中文标题】在 Flutter 中将数字格式化为字符串【英文标题】:Format a number to string in Flutter 【发布时间】:2021-05-05 19:28:31 【问题描述】:我已经使用intl_phone_field
包在 Flutter 中构建了一个带有电话号码输入的注册系统。现在我必须将此数字格式化为字符串以将其填充到数据库中。有没有办法做到这一点。我找不到任何东西。
感谢您的帮助。
【问题讨论】:
我以为它已经返回为Sting
?
【参考方案1】:
您是否使用文档中描述的completeNumber
getter?
IntlPhoneField(
decoration: InputDecoration(
labelText: 'Phone Number',
border: OutlineInputBorder(
borderSide: BorderSide(),
),
),
initialCountryCode: 'IN',
onChanged: (phone)
print(phone.completeNumber);
,
)
【讨论】:
以上是关于在 Flutter 中将数字格式化为字符串的主要内容,如果未能解决你的问题,请参考以下文章
在 JavaScript 中将十六进制数字格式化为短 UUID