惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Forbes - Security
Forbes - Security
GbyAI
GbyAI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
S
SegmentFault 最新的问题
Y
Y Combinator Blog
Recorded Future
Recorded Future
博客园 - Franky
I
InfoQ
T
The Blog of Author Tim Ferriss
Recent Announcements
Recent Announcements
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园_首页
阮一峰的网络日志
阮一峰的网络日志
T
Tailwind CSS Blog
Cyberwarzone
Cyberwarzone
The Register - Security
The Register - Security
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
雷峰网
雷峰网
P
Palo Alto Networks Blog
G
GRAHAM CLULEY
Cloudbric
Cloudbric
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
MongoDB | Blog
MongoDB | Blog
F
Full Disclosure
Google DeepMind News
Google DeepMind News
Recent Commits to openclaw:main
Recent Commits to openclaw:main
C
Check Point Blog
爱范儿
爱范儿
The GitHub Blog
The GitHub Blog
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
W
WeLiveSecurity
T
Threat Research - Cisco Blogs
U
Unit 42
N
Netflix TechBlog - Medium
The Cloudflare Blog
Spread Privacy
Spread Privacy
Microsoft Azure Blog
Microsoft Azure Blog
美团技术团队
T
Troy Hunt's Blog
Engineering at Meta
Engineering at Meta
H
Heimdal Security Blog
TaoSecurity Blog
TaoSecurity Blog
C
Cybersecurity and Infrastructure Security Agency CISA
T
Tenable Blog
B
Blog
S
Securelist
H
Hacker News: Front Page
Google Online Security Blog
Google Online Security Blog
G
Google Developers Blog

博客园 - 毛毛亟亟

ectouch 微信支付成功后订单状态未改变的解决办法 (转载) SQLSERVER2008以上版本的数据恢复 windows 2012(64位) IIS配置asp程序 500 - 内部服务器错误。您查找的资源存在问题,因而无法显示。 终于遇到了传说的ie 6 img 3px的bug This template requires a more recent version of the Android Eclipse plugin. Please update from versi This Android SDK requires Android Developer Toolkit version 20.0.0 or above CodeSmith Professional 5与VS2010有冲突 VS2005调试无法进入断点,暂停、停止、重编按钮为灰色 VS2005重置所有设置 flex 3中FileReference无法使用save()的问题 无法为区域设置“en_US”解析资源束“ViewerStrings” flexbuilder安装格式化组件和VSS组件 从旗舰版VS2010到部署完善MVC4成功,流程记录 sqlserver 2005与sqlserver2008的日志清理 [转载]如何学习Flex Framework .net读取ini配置文件的操作 使用VS2010开发服务端程序时每次安装服务名都是service1 extjs中grid的单击行或者双击行事件 获取Extjs中的TreePanel中所有的被checked的叶子节点的id
Flex String JSON 转换成 ArrayCollection
毛毛亟亟 · 2012-08-29 · via 博客园 - 毛毛亟亟

String to JSON  , JSON to ArrayCollection

==============

import com.adobe.serialization.json.JSON

var rawData:String = String('[{"name":"zhanzhihu","age":22,"gender":"male"},{"name":"zhanzhihu2","age":22,"gender":"male"}]'); 

var ac:ArrayCollection = new ArrayCollection(JSON.decode(rawData) as Array );

注意:String中属性必须带上"",如"name"。