Flex 中的书签

发布于 2024-11-18 03:07:10 字数 48 浏览 1 评论 0原文

是否可以将 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 技术交流群。

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

发布评论

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

评论(2

二货你真萌 2024-11-25 03:07:10

Flex中有一个概念叫做深度链接。
您可以在文档中阅读所有相关内容。

您基本上只需要一个类: BrowserManager。
此类允许您:

  • 控制浏览器的导航历史记录
  • 为应用程序的不同状态设置窗口标题 为应用程序的
  • 不同状态在浏览器的 URL 栏中设置特定的 URL
  • 监听浏览器 URL 栏中的更改,以便应用程序的状态应用程序可以相应更改

的 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:

  • control the navigation history of your browser
  • set window titles for different states of your application
  • set specific URL's in your browser's URL bar for different states of your application
  • listen for changes in the browser's URL bar, so the state of the application can be changed accordingly

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.

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