如何为数组的mongoDb模型上的属性添加虚拟字段?

时间:2019-03-16 13:11:57

标签: mongodb express mongoose

我的模型上有一个名为does-ok的属性,它是一个数组:

musiclinks

现在,我想创建一个const userSchema = new Schema({ email: { type: String, unique: true, lowercase: true, trim: true, validate: [validator.isEmail, 'Invalid Email Address'], required: 'Please Supply an email address' }, name: { type: String, required: 'Please supply a name', trim: true }, musicLinks: [String] }); 并接受vitual field的值并将其发送到oembed端点后将它们转换为iframe。(oembed端点基本上接受一个url并返回一个json对象,更多数据)

我该怎么做? 我在try块的ajax调用上添加了this.music链接

但不起作用:

musiclinks

有什么想法吗?

0 个答案:

没有答案