Flex 中标签测试的数组数据集合?
将数组集合绑定到标签文本后,我的标签文本没有显示。我可以看一下如何将数组集合正确绑定到标签文本的示例吗?
My label text is not showing up after binding the arraycollection to the label text. Could I see an example of how to properly bind an arraycollection to a labels text?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我想我对你的问题是什么感到困惑。当我这样做时,它会很好地打印
ArrayCollection
:打印出:1,2,3,4
ArrayCollection
中的数据类型>?您需要在数据类型上定义toString()
吗?I guess I am confused to what your problem is. When I do it, it prints the
ArrayCollection
just fine:prints out: 1,2,3,4
What type of data is in your
ArrayCollection
? Do you need to definetoString()
on your data type?也许您应该尝试绑定到 ArrayCollection 的元素?因为将整个 ArrayCollection 作为文本绑定到标签是没有意义的。
一些代码会很有用。
Maybe you shoud try binding to an element of the ArrayCollection? Because binding to the whole ArrayCollection as a text to a label does not make sense.
Some code would be useful.