node.js - mongodb 关联其他表id 打印出错
怪我咯
怪我咯 2017-05-16 13:39:32
[Node.js讨论组]
//models/contents.js
var mongoose = require('mongoose');
module.exports = new mongoose.Schema({
    //关联字段 - 内容分类的id
    category:{
        type:mongoose.Schema.Types.ObjectId,
        ref:'Content'    
    },
    title:String,    
    description:{
        type:String,
        default:''
    },
    content:{
        type:String,
        default:''
    }
});

//schema/content.js

var mongoose = require('mongoose');
var contentsSchema = require('../schemas/contents');
module.exports = mongoose.model('Content',contentsSchema);


//routers/admin.js

router.post('/content/add',function(req,res){
    console.log(req.body)
})
打印的不是id而是[object Object]   这是什么原因
{ category: '[object Object]',
  title: 'aaa',
  description: 'aaaa',
  content: 'aaaa' }
怪我咯
怪我咯

走同样的路,发现不同的人生

全部回复(0)
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送

Copyright 2014-2026 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号