2016-01-23 40 views
1

我想弄清楚從表單字段傳遞值作爲一個逗號分隔字符串的最佳方式,但它看起來像試圖傳遞多個值時遇到錯誤。無論如何,或者可能使用SET dataType作爲列?Sequelize驗證錯誤字符串違規:

discoverySource是我說的是現場大約

以下是錯誤:

{"name":"SequelizeValidationError","message":"string violation: discoverySource cannot be an array or an object","errors":[{"message":"discoverySource cannot be an array or an object","type":"string violation","path":"discoverySource","value":["NJ","BK","Somewhere?"]}]} 

型號:

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, 
    discoverySource: { 
     type: DataTypes.STRING, 
     field: 'discovery_source' 
    }, 
    members: DataTypes.STRING 
},{ 
    freezeTableName: true, 
    classMethods: { 
     associate: function(db) { 
      Organization.belongsToMany(db.User, { through: 'member', foreignKey: 'user_id' }); 
     }, 
    }, 
}); 

    return Organization; 
} 

表單視圖:

<!DOCTYPE html> 
<head> 
    {{> head}} 
</head> 
<body> 
    {{> navigation}} 
    <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"> 
       <a href="#" id="sign-up-add-discovery-source">Add Another Discovery Source</a> 
       <div id="sign-up-organization-discovery-source"> 
        <input type="text" id="discovery-source-field" placeholder="Discovery Source" name="discoverySource[0]"> 
       </div> 
       <br /> 
        <button type="submit">Submit</button> 
      </form> 
      <a href="/login">Already have an account? Login here!</a> 
     </div> 
    </div> 
    <script type="text/javascript"> 
     $(function() { 
    var dataSourceField = $('#sign-up-organization-discovery-source'); 
    var i = $('#sign-up-organization-discovery-source p').size(); 
    var sourceCounter = 1; 

    $('#sign-up-add-discovery-source').on('click', function() { 
    $('<p><label for="discovery-source-field"><input type="text" id="discovery-source-field" size="20" name="discoverySource['+ sourceCounter++ +']" value="" placeholder="Discovery Source" /></label> <a href="#" class="remove">Remove</a></p>').appendTo(dataSourceField); 
    i++; 
    return false; 
    }); 
    $('#sign-up-organization-discovery-source').on('click', '.remove', function() { 
    if (i > 1) { 
     $(this).parent('p').remove(); 
     i--; 
    } 
    return false; 
    }); 
}); 

    </script> 
</body> 

路線:

routes.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/app/sign-up-organization.hbs',{ 
       user: req.user 
      }); 
     }) 
    }) 

    .post(function(req, res, user){ 
     models.Organization.create({ 
      organizationName: req.body.organizationName, 
      admin: req.body.admin, 
      discoverySource: req.body.discoverySource 
     }).then(function(organization, user){ 

      models.Member.create({ 
       organizationId: organization.organizationId, 
       memberEmail: req.user.email, 
       userId: req.user.user_id 
      },{ where: { user_id: req.user.user_id }}); 
      return organization; 

     }).then(function(organization, user){ 
      models.User.update({ 
       organizationId: organization.organizationId 
      },{ where: { user_id: req.user.user_id }}); 
      res.redirect('/app'); 
     }).catch(function(error){ 
      res.send(error); 
      console.log('Error at Post' + error); 
     }) 
    }); 

回答

0

如果req.body.discoverySource具有價值 ["NJ","BK","Somewhere?"]和要存儲"NJ,BK,Somewhere?"discoverySource列,使用

req.body.discoverySource.join(',')