Flex:线程样式回复
我当前的 Flex 应用程序中的功能之一要求我维护评论部分。 在这里,用户可以发表评论以及对现有评论的回复。 我想要的只是像通常的线程风格评论一样。
假设我正在回复别人的评论,因此,它会将我的评论按一个选项卡左右对齐,人们可以轻松地看到评论和回复。
例如
USER ABC : COMMENT 1
-----USER XYZ: RE:COMMENT1
----------USER DEF: RE:RE:COMMENT1
等等...
任何人都可以建议一种方法来做到这一点吗?
谢谢 :)
One of the functionalities in my current flex application requires me to maintain a comments section. Here, the users can post the comments and the replies to existing comments. All I want is like the usual thread style commenting.
Let say, I am replying to someone else's comment, so, it will align my comment by a tab or so and people can easily see the comments and replies.
e.g.
USER ABC : COMMENT 1
-----USER XYZ: RE:COMMENT1
----------USER DEF: RE:RE:COMMENT1
and so on...
Can anyone suggest a way to do this?
Thanks :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在您的数据库中,您将存储每个评论的parentID。 您可以查询该数据并循环遍历它,创建新对象以根据需要显示评论。
将结果存储在 ArrayCollection 中
In your database you would store the parentID for each comment. You can query that data and loop through it creating new objects to display the comments however you want.
Store the results in an ArrayCollection