我正在尝试使用MaskedInput小部件(https://github.com/bthurlow/nativescript-maskedinput),但我无法使数据绑定工作。这是我的代码:
<mi:MaskedInput mask="999 999 9999" placeholder="_" text="{{ customer.homephone }}" color="#a8b4b9" />
上述代码段最初未显示电话号码。我很肯定customer.homephone有价值,因为
<TextField text="{{ customer.homephone, customer.homephone | phoneConverter() }}" class="value bold" />
正确显示。如果我使用硬编码值替换MaskedInput的text属性,则会显示该值。在我看来,数据绑定正在发生一些事情。我在这里错过了什么吗?
任何想法都受到高度赞赏。
谢谢。
答案 0 :(得分:2)
你正在做的事情,但从我从该插件的代码看到它不支持数据绑定。