无法从 html 表单传递的 objectID 中检索 object 的 属性

can not retrieve property of object from an objectID passed by html form

我正在使用平均堆栈(mongo/mongoose、ember、angular、节点)。

数据库包含 2 个模式

var ChildSchema = new Schema({
    childName: {
        type: String,
        required: true,
        trim: true
    }
});
  
  
var ParentSchema = new Schema({
    parentName: {
        type: String,
        required: true,
        trim: true
    },
    child: {
        type: Schema.ObjectId,
        ref: 'Child'
    }
});

mongoose.model('Parent', ParentSchema);
mongoose.model('Child', ChildSchema);

有一个 html form 允许用户创建一个新的 Parent,表单有一个 select 框,其中填充了 children 存储在数据库中并由 findChildren() 函数检索。

HTML 在这里:

<section data-ng-controller="ParentController" data-ng-init="findChildren()" >
    <form name="parentForm" class="form-horizontal col-md-6" role="form" data-ng-submit="create(parentForm.$valid)" novalidate>
        <div class="form-group" ng-class="{ 'has-error' : submitted && parentForm.config.$invalid }">
            <label for="child" class="col-md-2 control-label">child</label>
            <div class="col-md-9">
                <select ng-model="parent.child" ng-options="child as child.childName for child in childs"></select>
            </div>
        </div>

        <div class="form-group">
            <div class="col-md-offset-3 col-md-9">
                <button mean-token="'create-submit'" type="submit" class="btn btn-info">Submit</button>
           </div>
         </div>
    </form>
</section>

html form 将 children 的名称显示为列表中的 select 可用项,当用户按下提交按钮时,控制器在节点应用程序收到正确的 parent object ID。这是控制器代码

create: function(req, res) {
        var parent = new Parent(req.body);
        
        parent.save(function(err) {
            if (err) {
                return res.status(500).json({
                    error: 'Cannot save the parent'
                });
            }

            res.json(parent);
        });
    }

问题是当我试图在 table 中显示 parent 的列表时无法显示 childName。这里是HTML。显示了 parent 的所有其他信息

<section data-ng-controller="DevicesController" data-ng-init="findParents()">
    <table border="1" class="mytable">
        <tr>
            <td>oject</td>
            <td>Parent Name</td>
            <td>Child</td>
        </tr>
    
        <tr ng-repeat="parent in parents">
            <td>{{parent}}</td>
            <td>{{parent.parentName}}</td>
            <td>{{parent.child.childName}}</td>
        </tr>
    </table>
</section>

预期 parent.child.childName 将显示引用的 object 的 childName。它 returns 为空。如果我显示 'parent.child',它将显示 objectID

例如:

I have a child called ChildA.

When I view the html form to create a parent, i will enter ParentA for the name and select ChildA from the list.

When I press submit, the new Parent object will be created.

When i view the parent list, the table that is shown should show a row with ParentA and ChildA.

Right now it shows ParentA and a blank

parent.child 将 return objectid 是正确的,如果您想获得参考的详细信息,则需要使用 populate

我没有看到 findParents 的相关代码,您基本上可以执行以下操作:

    child.findOne({"_id": req.params.id}).populate('parent').exec(function (err, child) {
                if (err) {
                    res.status(403).json({
                        "status": "403",
                        "data": "Forbidden"
                    });
                } else {
                    res.status(200).json({
                        "status": "200",
                        "message": "Success",
                        "data" : child
                    });
                }
   });