我希望将Amber(on-line IDE)和OrderedCollection存储在Web浏览器的localStorage中,然后检索它。
| coll hcoll |
coll := OrderedCollection new.
coll add: 'abc'.
coll add: 'xon'.
hcoll := HashedCollection new.
hcoll at: 'en' put: 'English'.
hcoll at: 'fr' put: 'French'.
hcoll at: 'ge' put: 'German'.
coll add: hcoll.
localStorage是浏览器中的键值存储。值必须是字符串。
localStorage setItem: 'coll' value: coll asJSONString.
"We set coll to nil to indicate that we
are going to retrieve it back from the localStorage"
coll := nil.
以下的 printIt
localStorage getItem: 'coll'
给出
'["abc","xon",{"en":"English","fr":"French","ge":"German"}]'
这是一个JSON字符串。
如何取回OrderedCollection coll ?
使用浏览器内置的JSON解析器
JSON parse: (localStorage getItem: 'coll')
printIt 的结果是
an Array ('abc' 'xon' [object Object])
和
(JSON parse: (localStorage getItem: 'coll')) class
是
Array
数组的第三个元素
((JSON parse: (localStorage getItem: 'coll')) at: 3) class
是
JSObjectProxy
如何获取任意JSON对象的Smalltalk表示(包含JavaScript数组和对象,OrderedCollections和HashedCollections,Smalltalk中的字典)?
JSON基于两种结构:
答案 0 :(得分:4)
的printIt
SmalltalkImage current readJSObject:
(JSON parse: (localStorage getItem: 'coll'))
回馈
an Array ('abc' 'xon' a Dictionary ('en' -> 'English' , 'fr' -> 'French' , 'ge' -> 'German'))
<强>注释强>
(JSON parse: (localStorage getItem: 'coll'))
给出一个JSProxyObject,然后通过方法#readJSObject:将其转换为Amber对象。此方法只是将调用重定向到基础JavaScript方法。