Flex:数据绑定可以与 UITextField 一起使用吗?

发布于 2024-09-26 06:22:29 字数 276 浏览 2 评论 0原文

数据绑定可以与 UITextField 一起使用吗?不幸的是,我得到的是变量而不是绑定数据。

[Bindable]
public var myString:String;

在函数中,其中 tf 是 UITextField:

myString = "blah blah blah"; 等等……

tf.text="{myString}";

它给了我 {myString} 而不是它的数据。

Does data binding work with the UITextField? Unfortunately, I'm getting the variable instead of the bound data.

[Bindable]
public var myString:String;

in a function, where tf is a UITextField:

myString = "blah blah blah";
blah blah...

tf.text="{myString}";

It's giving me {myString} instead of its data.

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

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

发布评论

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

评论(1

南风起 2024-10-03 06:22:29

好吧,我明白了。原来我不需要“{}”。如果我使用:

tf.text= myString;,它就会起作用

Okay, I figured it out. It turned out that I didn't need the "{}". It works if I use:

tf.text= myString;

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文