cube.js playground 使用的一些问题
2021-05-31 00:00
标签: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 参考命名 当然这个并没有多大问题,但是会造成加入我们的列包含了上述字段那就会出现生成的schema 编译问题 参考正则 以上是一个日常的问题,推荐在命名的时候规避这些问题 https://github.com/cube-js/cube.js/blob/master/packages/cubejs-schema-compiler/src/scaffolding/ScaffoldingSchema.js#L144 cube.js playground 使用的一些问题 标签:div -o mod 就会 识别 created cti duration members 原文地址:https://www.cnblogs.com/rongfengliang/p/14647628.html只包含了为string类型的列
对于列包含了一些常见属于的就会自动放到度量中
// 会自动到度量中
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‘
];
id 判断问题
// 包含_id 以及id 的会自动识别为id
const idRegex = ‘_id$|id$‘;
说明
参考资料
https://github.com/cube-js/cube.js/blob/master/packages/cubejs-schema-compiler/src/scaffolding/ScaffoldingSchema.js
文章标题:cube.js playground 使用的一些问题
文章链接:http://soscw.com/index.php/essay/89716.html