Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道它是 HTML5 规范的一部分,但有时 WebKit 不符合规范的最新草案。
唉,WebKit 的 worker postMessage 实现当前没有序列化对象,因为它是写入到规范的早期版本中的,并且尚未更新以匹配“最终”版本。
它实际上也不是 JSON——它是 html5 中的内部结构化克隆算法,它更高效(它不需要与字符串相互转换)并且实际上比 JSON 更丰富,但是目前没有人实现它:-(
更新:从 Firefox 6.0开始,消息参数使用结构化克隆算法进行序列化。它现在似乎也可以在 Chrome 中使用。