未定义的玉的数组长度

时间:2014-02-16 14:09:46

标签: javascript node.js express pug template-engine

我有代码我想在餐馆显示餐桌的数量我的代码是:

#{restaurant.tables.length}

但它不适合我并且误解我“无法读取未定义的属性'长度'。我可以解决这个问题吗?

tables是从mongodb集合中获取的数组。

我使用mongoosejs“findOne”方法,我的餐厅架构是:

 var restuarantSchema = new Schema({
    name : String,
    details : String,
    owner : String,
    categories : {
       name : String
    },
    users : [],
    tabels: [{
        title: String
    }]
});

1 个答案:

答案 0 :(得分:7)

你的#{restaurant.tables.length}中有拼写错误它应该是表格