描述多维对象的正确方法是什么?
What's the Proper Way to Describe a Multidimensional Object?
PHP有多维数组,即一个数组包含多个数组。
在JavaScript中,如何调用包含多个对象的对象?一个多维对象?还是它有自己的行话?
那JSON呢?多维这个词 JSON 合适吗?
包含多个对象的对象只是一个对象。你可以称它为多维对象(或嵌套对象),它只是另一个对象中的一个对象。
至于JSON,是表示对象的对象符号:
JSON (JavaScript Object Notation) is a lightweight data-interchange
format. It is easy for humans to read and write. It is easy for
machines to parse and generate. It is based on a subset of the
JavaScript Programming Language, Standard ECMA-262 3rd Edition -
December 1999.
PHP有多维数组,即一个数组包含多个数组。
在JavaScript中,如何调用包含多个对象的对象?一个多维对象?还是它有自己的行话?
那JSON呢?多维这个词 JSON 合适吗?
包含多个对象的对象只是一个对象。你可以称它为多维对象(或嵌套对象),它只是另一个对象中的一个对象。
至于JSON,是表示对象的对象符号:
JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate. It is based on a subset of the JavaScript Programming Language, Standard ECMA-262 3rd Edition - December 1999.