Tag: mongoose azure cosmosdb

Cosmos DB:MongoDBsorting查询返回空白结果集

我正在使用Mongoose.js 4.11.6 Node.js 6.0。 我有一个用户文件,看起来像波纹pipe – var UserSchema = new Schema({ name: { type: String, default: '' }, email: { type: String, default: '' }, phone: { type: String, default: '' }, hashed_password: { type: String, default: '' }, role: { type: String, default: '' }, created_at: { type: Date, default: Date.now } }); 我正在运行下面的mongoose查询 […]