我在系统中将mongoose与node.js一起使用,问题是我想在字符串描述中复制html href并将其保存到新字符串中,同时寻找解决方案时我找到了一个删除html的库字符串中的标签,但我想复制其中一些标签,请多多帮助, 我的代码在
下
const mongoose = require('../mongoose');
require('mongoose-strip-html-tags')(mongoose);
const Schema = mongoose.Schema;
const bodySchima = new Schema({
author:{
type:String
},
title:{
type:String
},
description:{
type:String,
//stripHtmlTags: true
},
guid:{
type:String
},
link:{
type:String
},
thumbnail:{
type:String
},
media:{
type:String
},
content:{
type:String
},
pubDate:{
type:String
},
date:{
type:String
}
});
const headSchima = new Schema({
title:{
type:String
},
link:{
type:String
},
items:{
type:[bodySchima]
}
});
const FIRST_ITEM = mongoose.first_collection.model('first_collection', headSchima);