我如何在flex3中使用cookies信息

发布于 2024-08-30 19:10:15 字数 112 浏览 2 评论 0原文

我可以在flex中使用cookie信息吗?假设用户第一次以登录表单(在flex中设计)登录,当他再次登录时,我需要在cookie的下拉列表中显示用户名,在flex中可以吗?有什么办法可以做,请建议我,提前致谢。

can I use cookie information in flex? Suppose a user logs in first time in login form (designed in flex) and when he logs in again I need to show users name in dropdown from cookies, is it possible in flex? Is there any way I can do please suggest me Thanks in Advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

一人独醉 2024-09-06 19:10:15

您可以创建一个SharedObject来在用户计算机上存储会话数据。

var so:SharedObject = SharedObject.getLocal("savedData");

如果您指定的名称的共享对象不存在,则会创建一个。

查看实时文档以获取更多信息:
http://help.adobe.com/en_US/ AS3LCR/Flash_10.0/flash/net/SharedObject.html

You can create a SharedObject to store session data on a users computer.

var so:SharedObject = SharedObject.getLocal("savedData");

If a shared object by the name you specified doesn't exist, one will be created.

Check out the Live Docs for more info:
http://help.adobe.com/en_US/AS3LCR/Flash_10.0/flash/net/SharedObject.html

帅哥哥的热头脑 2024-09-06 19:10:15

您应该使用 cookie 在服务器上进行用户识别(会话 ID),就像使用任何其他 Web 应用程序一样。然后在后端有一个类似 getUserInfo() 的服务,它返回当前登录用户的信息。从 Flex 调用该方法(通过 HTTPService、WebService、RemoteObject 等),然后您将在客户端上获得用户信息。

You should use cookies for uses identification on the server (a session id) just like you would with any other web app. Then have a service on your back-end like getUserInfo() that returns the information for the currently logged in user. Call that method from Flex (via HTTPService, WebService, RemoteObject, etc) and then you will have the user information on the client.

始终不够 2024-09-06 19:10:15

请参阅关于此问题的许多 SO 线程

从 Flex 访问浏览器 cookie
如何在 Flex 中存储 Cookie?

简而言之,两个选项不不涉及返回服务器:

  • 使用 Javascript 集成来访问 cookie 数据,如 此库

  • 使用共享对象(“Flash cookies”)来保存本地数据。

See a number of SO threads on this issue:

Accessing browser cookies from Flex
How do i store cookies in flex?

Briefly, two options that don't involve going back to the server:

  • Use Javascript integration to access cookie data, as in this library.

  • Use SharedObjects ("Flash cookies") to persist local data.

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