我如何以编程方式生成一个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}
});
哪个会生成名称,就像这样。