schema中的虚拟属性方法
Posted 向着太阳生
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了schema中的虚拟属性方法相关的知识,希望对你有一定的参考价值。
schema中的虚拟属性方法相当于vue中的计算属性,它是通过已定义的schema属性的计算\组合\拼接得到的新的值
var personSchema = new Schema({ name: { first: String, last: String } }); var Person = mongoose.model(‘Person‘, personSchema); // create a document var bad = new Person({ name: { first: ‘Walter‘, last: ‘White‘ } }); personSchema.virtual(‘name.full‘).get(function () { return this.name.first + ‘ ‘ + this.name.last; }); console.log(‘%s is insane‘, bad.name.full); // Walter White is insane
虚拟属性也可以设置setter
personSchema.virtual(‘name.full‘).set(function (name) { var split = name.split(‘ ‘); this.name.first = split[0]; this.name.last = split[1]; }); ... mad.name.full = ‘Breaking Bad‘; console.log(mad.name.first); // Breaking console.log(mad.name.last); // Bad
Note:每个实例文档都能调用schema定义的方法和属性
以上是关于schema中的虚拟属性方法的主要内容,如果未能解决你的问题,请参考以下文章
在Tomcat的安装目录下conf目录下的server.xml文件中增加一个xml代码片段,该代码片段中每个属性的含义与用途