NodeJS 翡翠中数组长度未定义[已关闭]

6pp0gazn  于 2023-03-17  发布在  Node.js
关注(0)|答案(1)|浏览(84)

**已关闭。**此问题不符合Stack Overflow guidelines。当前不接受答案。

此问题似乎离题,因为**它缺乏诊断问题的足够信息。**请更详细地描述您的问题或在问题中描述include a minimal example
九年前就关门了。
Improve this question
我有代码我想显示计数的表在餐厅我的代码是:

#{restaurant.tables.length}

但是它对我不起作用,并且错误我“无法读取未定义的属性”长度“”。我如何解决这个问题?
tables是从mongodb集合中获取的数组i。
我使用了mongoosejs“findOne”方法,我的restaurant模式是:

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

liwlm1x91#

您的#{restaurant.tables.length}中有一处排印错误,应为tabels

相关问题