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

推荐订阅源

S
Security Affairs
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
Jina AI
Jina AI
P
Palo Alto Networks Blog
GbyAI
GbyAI
大猫的无限游戏
大猫的无限游戏
A
Arctic Wolf
Hugging Face - Blog
Hugging Face - Blog
小众软件
小众软件
Y
Y Combinator Blog
T
The Blog of Author Tim Ferriss
Blog — PlanetScale
Blog — PlanetScale
S
Schneier on Security
V
Vulnerabilities – Threatpost
C
Cybersecurity and Infrastructure Security Agency CISA
雷峰网
雷峰网
T
Tenable Blog
人人都是产品经理
人人都是产品经理
T
Tor Project blog
C
Cyber Attacks, Cyber Crime and Cyber Security
AWS News Blog
AWS News Blog
Microsoft Security Blog
Microsoft Security Blog
J
Java Code Geeks
Scott Helme
Scott Helme
SecWiki News
SecWiki News
C
CERT Recently Published Vulnerability Notes
Recorded Future
Recorded Future
I
InfoQ
Security Archives - TechRepublic
Security Archives - TechRepublic
Help Net Security
Help Net Security
Cloudbric
Cloudbric
C
Check Point Blog
Engineering at Meta
Engineering at Meta
TaoSecurity Blog
TaoSecurity Blog
B
Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园_首页
N
News and Events Feed by Topic
云风的 BLOG
云风的 BLOG
MyScale Blog
MyScale Blog
腾讯CDC
量子位
Application and Cybersecurity Blog
Application and Cybersecurity Blog
K
Kaspersky official blog
Vercel News
Vercel News
F
Full Disclosure
T
Troy Hunt's Blog
Forbes - Security
Forbes - Security
S
Security @ Cisco Blogs

博客园 - 毛毛亟亟

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"。