以编程方式生成Keystone列表名称

时间:2015-07-01 20:07:43

标签: javascript node.js mongoose keystonejs

我如何以编程方式生成一个keystone列表名称?

我正在寻找类似的东西......

var Font = new keystone.List('Font', {
    // ↓↓↓ LOOK ↓↓↓ HERE ↓↓↓
    map: { name: 'typefaceName + weightName' },
    track: true,
    schema: { collection: 'Font' }
});

Font.add({
    typefaceName: { type: String, initial: true, required: true},
    weightName: { type: String , initial: true, required: true}
});

哪个会生成名称,就像这样。 enter image description here

0 个答案:

没有答案