Py学习  »  MongoDB

MongoDB模式/模型中文件的字段类型是什么?

Carlos Herrera • 5 年前 • 1576 次点击  

我正在使用mongo模式发布表单。对所有字符串都很好,但现在我正在尝试上载一个文件。应该在架构中指定文件的字段类型?

//create model/schema
const TrackSchema = new Schema({
    title:{
        type: String, 
        required: true
    },
    length:{
        type: String, 
        required: true
    }, 
    available:{
        type: Boolean, 
        required: true
    },
    image:{
        type: String, 
        required: true
    }, 
    date: {
        type: Date, 
        default: Date.now
    }, 
    source: {
        type: **??, 
        required: true
    }
})

我应该将“source”字段设置为什么类型,它将是来自表单的文件

Python社区是高质量的Python/Django开发社区
本文地址:http://www.python88.com/topic/47618
 
1576 次点击  
文章 [ 2 ]  |  最新文章 5 年前