2011-07-18 115 views
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" 

這是一個不可能的要求?

回答

4

未經檢驗的,但你可以嘗試:

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

+1我刪除了我的答案,因爲你在你的下滑之前,我有時間來完成它,你也做了'VAR的myKey:字符串=「測試」;'我遺漏了。 – Taurayi