как связать идентификатор пользователя с таблицей post

#node.js #postgresql #sequelize.js

#node.js #postgresql #sequelize.js

Вопрос:

Я пытаюсь связать идентификатор пользователя в таблице пользователей с каждым сообщением в таблице сообщений.

Вот моя модель Post:-

 const Post = db.define(
"Post",
{
id: {
  type: Sequelize.INTEGER,
  primaryKey: true,
  autoIncrement: true,
},
title: {
  type: Sequelize.STRING,
},
userId: {
  type: Sequelize.INTEGER,
},
},
);
  
 User.hasMany(Post, { foreignKey: "userId" });

Post.belongsTo(User, { foreignKey: "userId" });
  

Вот моя модель пользователя:-

     const User = db.define(
    "User",
    {
    id: {
      type: Sequelize.INTEGER,
      primaryKey: true,
      autoIncrement: true,
    },
    name: {
      type: Sequelize.STRING,
    },
    email: {
      type: Sequelize.STRING,
    },
    password: {
      type: Sequelize.STRING,
    },
    },
    );
  

и вот мой запрос post:-

      router.post(
      "/",
    [
    upload.array("images", config.get("maxImageCount")),
    imageResize,
    ],
     async (req, res) => {
    const paths = await req.files.map((file) => ({ fileName: file.filename }));
    await Post.create(
      {
        title: req.body.title,
        userId: req.body.userId,
        Post_Images: paths.map((x) => ({ images: x.fileName })),
      },
      { include: [Post_Image] }
    ).then(
      res.status(201).send({
        msg: "upload successful",
      }),
      (validation) => {
        res.status(422).json({
          errors: validation.errors.map((error) => {
            return {
              fieldName: error.path,
              message: error.message,
            };
          }),
        });
      }
    );
     }
     );
  

В моем вызове create я пытался использовать userId: req.body.userId , но он не работает, он продолжает возвращать идентификатор пользователя null.

Комментарии:

1. Вы смотрели req.body.userId ? Это правильно?

2. когда я делаю console.log(req.body.userId), я получаю undefined. я даже пробовал req.userId и req.body.user, он не работает

3. Итак, вы пытались вывести req.body.userId или req.body.user ?

4. я попытался вывести как req.body.userId, так и req.body.user, и оба они не были определены

5. Это означает, что вы не передавали идентификатор пользователя со стороны клиента. Посмотрите на все req.body . Что вы там видите?