繁体   English   中英

在ES6 Promises中使用Sequelize?

[英]Using Sequelize with ES6 Promises?

我正在使用Sequelize连接到Postgres数据库。 我有以下代码:

return Promise.resolve()
    .then(() => {
        console.log('checkpoint #1');
        const temp = connectors.IM.create(args);
        return temp;
    })
    .then((x) => console.log(x))
    .then((args) =>{
        console.log(args);
        args = Array.from(args);
        console.log('checkpoint #2');
        const temp = connectors.IM.findAll({ where: args }).then((res) => res.map((item) => item.dataValues))
            return temp;
        }
    )
    .then(comment => {
        return comment;
    })
    .catch((err)=>{console.log(err);});

在检查点#1的第一个.then块中,新记录已成功添加到Postgres数据库中。 在下一个then块的console.log(x)中,这将记录到控制台:

{ dataValues: 
{ id: 21,
  fromID: '1',
  toID: '2',
  msgText: 'Test from GraphIQL',
  updatedAt: Wed Oct 12 2016 09:52:05 GMT-0700 (PDT),
  createdAt: Wed Oct 12 2016 09:52:05 GMT-0700 (PDT) },
_previousDataValues: 
{ fromID: '1',
  toID: '2',
  msgText: 'Test from GraphIQL',
  id: 21,
  createdAt: Wed Oct 12 2016 09:52:05 GMT-0700 (PDT),
  updatedAt: Wed Oct 12 2016 09:52:05 GMT-0700 (PDT) },
_changed: 
{ fromID: false,
  toID: false,
  msgText: false,
  id: false,
  createdAt: false,
  updatedAt: false },
'$modelOptions': 
{ timestamps: true,
  instanceMethods: {},
  classMethods: {},
  validate: {},
  freezeTableName: false,
  underscored: false,
  underscoredAll: false,
  paranoid: false,
  rejectOnEmpty: false,
  whereCollection: null,
  schema: null,
  schemaDelimiter: '',
  defaultScope: {},
  scopes: [],
  hooks: {},
  indexes: [],
  name: { plural: 'IMs', singular: 'IM' },
  omitNul: false,
  sequelize: 
   { options: [Object],
     config: [Object],
     dialect: [Object],
     models: [Object],
     modelManager: [Object],
     connectionManager: [Object],
     importCache: {},
     test: [Object],
     queryInterface: [Object] },
  uniqueKeys: {},
  hasPrimaryKeys: true },
'$options': 
{ isNewRecord: true,
  '$schema': null,
  '$schemaDelimiter': '',
  attributes: undefined,
  include: undefined,
  raw: undefined,
  silent: undefined },
hasPrimaryKeys: true,
__eagerlyLoadedAssociations: [],
isNewRecord: false }

在检查点#2的.then((args) =>代码块中, args进入时未定义。

我如何使args包含来自检查点#1的结果数组?

.then((x) => console.log(x))
.then((args) =>{

就像在做

.then((x) => {
    console.log(x);

    return undefined;
})
.then((args) =>{

因为console.log返回undefined 这意味着undefined值将传递给下一个.then

最简单的方法是明确

.then((x) => {
    console.log(x);

    return x;
})

或更短的版本使用逗号运算符

.then((x) => (console.log(x), x))

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM