Flex 中的书签
是否可以将 Flex url 添加到书签。如果没有,请告诉我是否有其他选择。谢谢。
Is not it possible to add a flex url to bookmarks. If not,Please let me know if any alternatives are there. Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Flex中有一个概念叫做深度链接。
您可以在文档中阅读所有相关内容。
您基本上只需要一个类: BrowserManager。
此类允许您:
的 URL
可以告诉您的应用程序显示正确的信息。
为什么 URL 中有井号?
这是因为我们不想在用户更改 URL 时重新加载整个应用程序。因此,我们停留在加载相同应用程序的一页上;井号后面的部分是发送到 Flex 应用程序的信息,Flex 应用程序可以根据此信息更改其状态。
There is a concept in Flex called deep linking.
You can read all about it in the docs.
You basically just need one class: the BrowserManager.
This class allows you to:
So you can have URL's like
which can tell your application to display the right information.
Why is there a pound sign in the URL?
That's because we don't want to reload the entire application when the user changes the URL. So we stay on one page with the same app loaded; the part behind the pound signs is information that is being sent to the Flex app, which can change it's state according to this information.
您可以查看:http://code.google.com/p/bookmarks-framework/< /a>
You could look at: http://code.google.com/p/bookmarks-framework/