首先抱歉我的英语;)
第二个我的问题:
描述:
我有 :
var mongoose = require('mongoose');
// define the schema for our user model
var userSchema = mongoose.Schema({
facebook : {
id : String,
token : String,
email : String,
name : String
}
});
// create the model for users and expose it to our app
module.exports = mongoose.model('User', userSchema);
将其与node.js上的通行证一起使用。
...
var User = require('../app/models/user');
我不连接到mongodb,因为我使用mysql来存储会话。
我唯一不了解的是_id值,来自护照还是会议?
题 :
我需要做些什么来获得用户模型(对象),以便它与通行证/会议一起工作?还是无论如何我都需要一些方法,所以最好从猫鼬那里获得用户模型?
辛里·拉肯达克
最佳答案
ID(称为ObjectId)由MongoDB为每个文档生成和设置。
我相信使用MySQL作护照时会自动递增。
关于mysql - node.js Passport 用户模式手动设置,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/43558383/