express - Sequelize 无法为关联对象添加值

标签 express sequelize.js

我正在尝试创建一个带有子对象(关联)的对象,该对象将创建的对象的 Id 作为值传递给其属性。我试图按照文档进行操作,但是 SQL 命令没有传递任何值。

这是 SQL 查询:

INSERT INTO `organization` (`organization_id`,`organization_name`,`admin`,`updatedAt`,`createdAt`) VALUES (DEFAULT,'dfsadfadsfa','ter@test.cm','2016-01-08 02:23:04','2016-01-08 02:23:04');

没有引用 user
这是插入组织的路线:
var express = require('express');
var appRoutes   = express.Router();
var passport = require('passport');
var localStrategy = require('passport-local').Strategy;
var models = require('../models/db-index');

    appRoutes.route('/sign-up/organization')

        .get(function(req, res){
            models.User.find({
                where: {
                    user_id: req.user.email
                }, attributes: [ 'user_id', 'email'
                ]
            }).then(function(user){
                res.render('pages/sign-up-organization.hbs',{
                    user: req.user
                });
            })

        })

        .post(function(req, res, user){
            models.Organization.create({
                organizationName: req.body.organizationName,
                admin: req.body.admin,
                User: [{
                    organizationId: req.body.organizationId
                }]
            }, { include: [models.User] }).then(function(){
                console.log(user.user_id);
                res.redirect('/app');
            }).catch(function(error){
                res.send(error);
                console.log('Error at Post');
            })
        });

这是表单提交:
<div class="container">
        <div class="col-md-6 col-md-offset-3">
            <form action="/app/sign-up/organization" method="post">
                <p>{{user.email}}</p>
                <input type="hidden" name="admin" value="{{user.email}}">
                <input type="hidden" name="organizationId">
                <label for="sign-up-organization">Company/Organization Name</label>
                <input type="text" class="form-control" id="sign-up-organization"  name="organizationName" value="" placeholder="Company/Organization">
                <br />
                    <button type="submit">Submit</button>
            </form>

user.js 模型:
var bcrypt   = require('bcrypt-nodejs');

module.exports = function(sequelize, DataTypes) {

var User = sequelize.define('user', {
    user_id: {
        type: DataTypes.INTEGER,
        autoIncrement: true,
        primaryKey: true
    },
    firstName: {
        type: DataTypes.STRING,
        field: 'first_name'
    },
    lastName: {
        type: DataTypes.STRING,
        field: 'last_name'
    },
    email: {
        type: DataTypes.STRING,
        isEmail: true,
        unique: true
    },
    password: DataTypes.STRING,
    organizationId: {
        type: DataTypes.INTEGER,
        field: 'organization_id',
        allowNull: true
    }
}, {
    freezeTableName: true,
    classMethods: {
        generateHash: function(password) {
            return bcrypt.hashSync(password, bcrypt.genSaltSync(8), null);
        },
    },
    instanceMethods: {
        validPassword: function(password) {
            return bcrypt.compareSync(password, this.password);
        },
    },


});
    return User;
}

Organization.js 模型:
module.exports = function(sequelize, DataTypes) {

var Organization = sequelize.define('organization', {
    organizationId: {
        type: DataTypes.INTEGER,
        field: 'organization_id',
        autoIncrement: true,
        primaryKey: true
    },
    organizationName: {
        type: DataTypes.STRING,
        field: 'organization_name'
    },
    admin: DataTypes.STRING,
    members: DataTypes.STRING
},{
    freezeTableName: true,
    classMethods: {
        associate: function(db) {
            Organization.hasMany(db.User, {foreignKey: 'user_id'});
        },
    },
});

    return Organization;
}

db-index.js:两者关联的地方:
var Sequelize = require('sequelize');
var path = require('path');
var config = require(path.resolve(__dirname, '..', '..','./config/config.js'));
var sequelize = new Sequelize(config.database, config.username, config.password, {
    host:'localhost',
    port:'3306',
    dialect: 'mysql'
});

sequelize.authenticate().then(function(err) {
    if (!!err) {
        console.log('Unable to connect to the database:', err)
    } else {
        console.log('Connection has been established successfully.')
    }
});

var db = {}

db.Organization = sequelize.import(__dirname + "/organization");

db.User = sequelize.import(__dirname + "/user");

db.Annotation = sequelize.import(__dirname + "/annotation");

db.Organization.associate(db);
db.Annotation.associate(db);

db.sequelize = sequelize;
db.Sequelize = Sequelize;

sequelize.sync();

module.exports = db;

最佳答案

当我使用 Sequelize 时,我通常会创建一个函数,该函数使用 build 方法创建一个 sequelize 模型的实例,并使用该实例将该实例保存到数据库中。使用返回的实例,您可以做任何您需要的事情。

var instance = models.Organization.build(data);
instance.save().then(function(savedOrgInstance){
    savedOrgInstance.createUser(userData).then(function(responseData){
    //do whatever you want with the callback })
})

我不能说我看过你写的 create 语句。什么是额外的包含语句?

这应该为新创建的用户提供您正在寻找的关联。
您应该查看文档中的 setAssociaton、getAssociation、createAssociation 方法。 http://docs.sequelizejs.com/en/latest/docs/associations/

关于express - Sequelize 无法为关联对象添加值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34668542/

相关文章:

angular - 类型“订阅”上不存在属性 'subscribe'

javascript - 当我运行sequelize.sync()时,为什么我的表没有被更改?

mariadb - 如何使用 sequelize 删除行

javascript - Sequelize.js 钩子(Hook) afterBulkCreate 迭代

node.js - Sequelize 同步与迁移

node.js - 如何在 Sequelize/Node.js 中创建关联对象?

javascript - 当我尝试保存在 MongoDB 中时,.then 未定义

node.js - nodejs,如何检查每个页面上是否定义了 session

javascript - 尝试将对象从客户端发送到服务器(AngularJS $http.post)

express - 无法使用 nextjs 代理到 nodejs/express 套接字 io 服务器