共享对象语法

发布于 2024-11-24 16:00:12 字数 332 浏览 0 评论 0原文

在 AS3 中,我想使用字符串的内容设置共享对象的密钥,而不是专门命名密钥。

so.data.test = "andy"   // this is the basic working system 

我不想写测试我想要这样的东西

// this is a non working and incorrect solution but shows what I am trying to do.
String myKey = "test"
so.data.{myKey} = "andy" 

这是一个不可能的问题吗?

In AS3 I would like to set the key of a shared object with the contents of a string as opposed to specifically naming the key.

so.data.test = "andy"   // this is the basic working system 

I do not want to write test I want something like this

// this is a non working and incorrect solution but shows what I am trying to do.
String myKey = "test"
so.data.{myKey} = "andy" 

Is this an impossible ask?

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

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

发布评论

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

评论(1

抽个烟儿 2024-12-01 16:00:12

未经测试,但你可以尝试:

var myKey:String = "test";
so.data[myKey] = "andy";

Untested, but you could try:

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