| 123456789101112 |
- var Schema = require('mongoose').Schema;
- let tagSeo = new Schema({
- tag: { type: String, unique: true, desc: 'tag' },
- // 网站seo title,60个字符以内
- seoTitle: { type: String, desc: '小标题', searchable: true }, // json字符串,形如: {zh: '中国', en: 'China'}
- // 网站seo meta description, 160个字符以内
- seoDescription: { type: String, desc: '文案描述', searchable: true }, // json字符串,形如: {zh: '中国', en: 'China'}
- });
- module.exports = tagSeo;
|