1. ホーム
  2. javascript

[解決済み] 処理されない拒絶反応 SequelizeUniqueConstraintError: バリデーションエラー

2022-02-17 04:20:48

質問

このようなエラーが発生するのですが。

Unhandled rejection SequelizeUniqueConstraintError: Validation error

どうすれば直るのでしょうか?

これは私のmodels/user.jsです。

"use strict";

module.exports = function(sequelize, DataTypes) {
  var User = sequelize.define("User", {
    id:  { type: DataTypes.INTEGER, autoIncrement: true, primaryKey: true},
    name: DataTypes.STRING,
    environment_hash: DataTypes.STRING
  }, {
    tableName: 'users',
    underscored: false,
    timestamps: false
  }

  );

  return User;
};

そして、これが私のroutes.jsです。

app.post('/signup', function(request, response){

        console.log(request.body.email);
        console.log(request.body.password);

        User
        .find({ where: { name: request.body.email } })
            .then(function(err, user) {
                if (!user) {
                        console.log('No user has been found.');

                        User.create({ name: request.body.email }).then(function(user) {
                            // you can now access the newly created task via the variable task
                            console.log('success');
                        });

                } 
            });



    });

解決方法は?

の呼び出しは User.create() が返されます。 Promise.reject() は存在しないが .catch(err) を処理することができます。エラーを捕捉し、入力値を知ることができなければ、バリデーションエラーが何であるかを言うことは困難です。 request.body.email が長すぎるなどの可能性があります。

Promiseのrejectをキャッチして、エラー/バリデーションの詳細を確認する

User.create({ name: request.body.email })
.then(function(user) {
    // you can now access the newly created user
    console.log('success', user.toJSON());
})
.catch(function(err) {
    // print the error details
    console.log(err, request.body.email);
});

2019年になり、async/awaitが使えるようになったので更新

try {
  const user = await User.create({ name: request.body.email });
  // you can now access the newly created user
  console.log('success', user.toJSON());
} catch (err) {
  // print the error details
  console.log(err, request.body.email);
}