标签:div -o mod 就会 识别 created cti duration members
playground 是一个很不错的选择,可以方便的为我们生成cube.js schema 但是如果经常使用的话,会发现一些问题
当然这个应该是一个bug,具体可以参考 https://github.com/cube-js/cube.js/blob/master/packages/cubejs-schema-compiler/src/scaffolding/ScaffoldingSchema.js#L144
参考命名
// 会自动到度量中
const MEASURE_DICTIONARY = [
‘amount‘,
‘price‘,
‘count‘,
‘balance‘,
‘total‘,
‘number‘,
‘cost‘,
‘qty‘,
‘quantity‘,
‘duration‘,
‘value‘
];
// 会自动添加drill
const DRILL_MEMBERS_DICTIONARY = [
‘id‘,
‘name‘,
‘title‘,
‘firstname‘,
‘first_name‘,
‘lastname‘,
‘last_name‘,
‘createdat‘,
‘created_at‘,
‘created‘,
‘timestamp‘,
‘city‘,
‘country‘,
‘date‘
];
当然这个并没有多大问题,但是会造成加入我们的列包含了上述字段那就会出现生成的schema 编译问题
参考正则
// 包含_id 以及id 的会自动识别为id
const idRegex = ‘_id$|id$‘;
以上是一个日常的问题,推荐在命名的时候规避这些问题
https://github.com/cube-js/cube.js/blob/master/packages/cubejs-schema-compiler/src/scaffolding/ScaffoldingSchema.js#L144
https://github.com/cube-js/cube.js/blob/master/packages/cubejs-schema-compiler/src/scaffolding/ScaffoldingSchema.js
标签:div -o mod 就会 识别 created cti duration members
原文地址:https://www.cnblogs.com/rongfengliang/p/14647628.html