Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
将文件上传附加到上传文件的用户的最佳方式是什么?
我在想我会为文件上传创建一个猫鼬模型,其架构如下:
user: {type: Schema.Types.ObjectId, ref: 'User'}, url: String
其中 url 只是上传文件的位置。但是,这会很好地扩展吗?
有没有更标准的方法来做这样的事情?
我就是这样做的。此外,您可以设置一个pre('save')功能来设置user谁上传的图像。
pre('save')
user