Return 在 adonisjs 中使用关系的数据为空

Return data using relation in adonisjs is null

我想使用 adonisjs 从数据库中具有一对一关系的两个 table 中获取数据。当我尝试从 table 之一获取所有数据时,结果为空。

这是我在模型中的关系代码:

class Cart extends Model {

    product () {
        return this.hasOne('App/Models/Product')
    }
    static get table()
    {
        return 'cart'
    }

    static get primaryKey()
    {
        return 'id_cart'
    }

    static get foreignKey()
    {
        return 'id_product'
    }

...

这是我的产品型号:

class Product extends Model {

    static get table()
    {
        return 'product'
    }

    static get primaryKey()
    {
        return 'product_id'
    }

}
module.exports = Product

那么,这是我的控制器

async index ({response}) {
        const allProduct = await Cart.query().with('product').fetch();
        return response.json({
            status:true,
            data: allProduct
        })
    }

已编辑

这是我的购物车架构

class CartSchema extends Schema {

  async up () {
    const exists = await this.hasTable('cart')

    if (!exists) {
      this.create('cart', (table) => {
        table.increments()
        table.string('id_product').unsigned().references('product_id').inTable('product')
        table.timestamps()
      })
    }
...

这是我的产品架构:

class ProductSchema extends Schema {
    async up () {
    const exists = await this.hasTable('product')

    if (!exists) {
        this.create('product', (table) => {
          table.increments()
          table.timestamps()
        })
     }
...

以上数据产品为空。这段代码有什么问题?

由于在 Cartschema 中放置引用时此数据类型不是字符串,因此输出为 null。将数据类型字符串更改为这样的整数

class CartSchema extends Schema {

  async up () {
    const exists = await this.hasTable('cart')

    if (!exists) {
      this.create('cart', (table) => {
        table.increments() 
        table.integer('id_product').unsigned().references('product_id').inTable('product')
        table.timestamps()
      })
    }
...

根据您的架构,从 Cart 模型到 Product 的关系是 belongsTo

product table 的主键是 id 并且 cart table 上的引用键是 id_product 根据您的架构。

按如下方式在 productcart 模型上配置您的关系。

product() {
    return this.belongsTo("App/Models/Product", "id_product", "id");
}

获取包含以下产品的购物车

const cart = await Cart.query()
      .with("product")
      .fetch();