码迷,mamicode.com
首页 > Web开发 > 详细

cube.js 学习(五)cube.js joins 说明

时间:2019-05-03 11:39:39      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:order   官方   any   mat   资料   参考   spl   lin   ESS   

cube.js 也支持join,

参考格式

joins: {
  TargetCubeName: {
    relationship: `belongsTo` || `hasMany` || `hasOne`,
    sql: `SQL ON clause`
  }
}

一个简单demo

cube("Authors", {
  joins: {
    Books: {
      relationship: `hasMany`,
      sql: `${Authors}.id = ${Books}.author_id`
    }
  }
});

说明

详细的可以参考官方文档,都是一些基本的配置

参考资料

https://cube.dev/docs/joins

cube.js 学习(五)cube.js joins 说明

标签:order   官方   any   mat   资料   参考   spl   lin   ESS   

原文地址:https://www.cnblogs.com/rongfengliang/p/10804373.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!