【问题标题】:load items where relation is null in sequelize在续集中加载关系为空的项目
【发布时间】:2017-12-28 22:14:21
【问题描述】:

我是续集的新手,我正在尝试加载我的用户表中任务关系为空的所有条目。但它不工作。这是我尝试过的:

const express = require('express');
const app = express();

const Sequelize = require('sequelize');
const sequelize = new Sequelize('sequelize', 'mazinoukah', 'solomon1', {
  host: 'localhost',
  dialect: 'postgres',

  pool: {
    max: 5,
    min: 0,
    acquire: 30000,
    idle: 10000,
  },
});

const Task = sequelize.define('Task', {
  name: Sequelize.STRING,
  completed: Sequelize.BOOLEAN,
  UserId: {
    type: Sequelize.INTEGER,
    references: {
      model: 'Users', // Can be both a string representing the table name, or a reference to the model
      key: 'id',
    },
  },
});

const User = sequelize.define('User', {
  firstName: Sequelize.STRING,
  lastName: Sequelize.STRING,
  email: Sequelize.STRING,
  TaskId: {
    type: Sequelize.INTEGER,
    references: {
      model: 'Tasks', // Can be both a string representing the table name, or a reference to the model
      key: 'id',
    },
  },
});

User.hasOne(Task);
Task.belongsTo(User);

app.get('/users', (req, res) => {
  User.findAll({
    where: {
      Task: {
        [Sequelize.Op.eq]: null,
      },
    },
    include: [
      {
        model: Task,
      },
    ],
  }).then(function(todo) {
    res.json(todo);
  });
});

   app.listen(2000, () => {
      console.log('server started');
   });

如果我有 3 个用户,其中 2 个用户各有一个任务,我想只加载最后一个没有任务的用户。这在sequelize中可能吗?

【问题讨论】:

    标签: node.js sequelize.js


    【解决方案1】:

    经过多次调试,我找到了解决方案

    app.get('/users', (req, res) => {
    User.findAll({
        where: {
          '$Task$': null,
        },
        include: [
          {
            model: Task,
            required: false,
          },
        ],
      }).then(function(todo) {
        res.json(todo);
      });
    });
    

    通过添加这个 where 子句

    where: {
      '$Task$': null,
    },
    

    我只能加载没有任务的用户

    【讨论】:

      猜你喜欢
      • 2015-12-25
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2020-12-16
      • 2019-06-04
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多