2025年度工业阀门企业口碑排名:开维喜性价比怎么样? - mypinpai
2025/12/25 13:09:02
在开发Flex应用时,我们需要对一些关键功能进行完善,以实现对博客文章的查看、添加、编辑和删除操作。
当TabNavigator切换到“Posts”标签时,我们需要检查更新前查看的是当前文章还是存档文章,以便用正确的数据刷新界面。修改indexChangedHandler函数如下:
private function indexChangedHandler(e:IndexChangedEvent):void{ if (e.newIndex == 0) { if (isCurrent) { postLoader.load (serverPath + "getPosts.php", null); } else { postLoader.load(serverPath + "getPosts.php?archive=true", null); } } else if (e.newIndex == 2) { postDetails.txtAddEditMessage.text = ""; postDetails.server = serverPath; postDetails.postID = currentPost.