想弄個簡單的文章發佈系統,所有文章需要屬於一個分類,求教資料庫怎麼設計,一級就夠。新手剛學資料庫這塊。 。
//文章模型
var mongoose = require('mongoose');
var Schema = mongoose.Schema;
var AticleSchema = new Schema({
title: { type: String },
author_id: { type: String},
content:{type:String},
create_at: { type: Date, default: Date.now },
update_at: { type: Date, default: Date.now },
});
AticleSchema.index({title: 1}, {unique: true});
mongoose.model('Aticle', AticleSchema);
最簡單粗暴的辦法,你可以透過表格關聯,建立兩個schema,一個文章,一個文章分類。
1,分類文檔的schema
2,另外一篇文章文檔的schema跟你自己寫的一樣,只是做一點修改
其餘的程式碼會以你的方式自行加入。
多分類怎麼搞,怎麼搞