Underscore集合采用返回undefineds

时间:2013-06-18 11:54:53

标签: backbone.js collections underscore.js

我是骨干/下划线/ jquery的新手,我对pluck方法有疑问。我可以记录整个集合,看到我有20个左右的模型(正确的术语?),其中有各种属性。

当我使用这段代码时,整个集合都会被迭代,但每个模型的lat字段都会以未定义的形式返回,所以我最终会得到20个undefined。我已经尝试将字段名称更改为其他内容,所以它不是我拼错它。有什么想法吗?

addPinsToMap : function() {

        var carMapVar = window.router.carsCollection;

        var names = carMapVar.pluck("lat");
        console.log(names);

    }

0 个答案:

没有答案