0
私はなぜMongoDBから自分のデータを取得しないのか分かりません。代わりに、私はこのオブジェクトを取得する:MongoDBからクエリを実行すると、なぜこのオブジェクトが取得されますか?
_mongooseOptions: {},
mongooseCollection:
NativeCollection {
collection: null,
opts: { bufferCommands: true, capped: false },
name: 'products',
collectionName: 'products',
conn:
NativeConnection {
base: [Object],
collections: [Object],
models: [Object],
config: [Object],
replica: false,
..........
.....and so on
これは私のコードです:
var express = require('express');
var router = express.Router();
var mongoose = require('mongoose');
var Product = require('../models/product');
router.get('/', function(req, res, next) {
var items = Product.find();
console.log(items);
});
ありがとうございました。それは今働いている。 – sam