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.
怎么做?简单的 JS.length返回未定义。
.length
试试.get('length');吧,因为ManyArray有点特别。我只是.get('length');在 Ember 中一直使用这些天,以防止出现此类问题,否则您只会发现自己在混合.get('length');和.length.
.get('length');
ManyArray
对于任何 Ember 数组,您需要使用 .get('length')。只是想澄清这不是 ManyArray 独有的。