Sequelize中的承诺:如何从每个承诺中获得结果 [英] Promises in Sequelize: how to get results from each promise

查看:87
本文介绍了Sequelize中的承诺:如何从每个承诺中获得结果的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在Sequelize> = 1.7 我们可以使用承诺

In Sequelize >=1.7 we can use promises

你能解释一下我如何从这个代码中获得每个用户的价值:

Can you explain for me how can i get values from each user in this code:

var User = sequelize.define("user", {
  username: Sequelize.STRING
})


User
  .sync({ force: true })
  .then(function() { return User.create({ username: 'John' }) })
  .then(function(john) { return User.create({ username: 'Jane' }) })
  .then(function(jane) { return User.create({ username: 'Pete' }) })
  .then(function(pete) {
    console.log("we just created 3 users :)")
    console.log("this is pete:")
    console.log(pete.values)

    // what i want:
    console.log("this is jane:")
    console.log(jane.values)

    console.log("this is john:")
    console.log(john.values)
  })

UPD

所有值都需要与其他模型设置关联。
实际上我需要一些像这样的代码:

All values need for set associations with other Model. Actually i need some like this code:

User.hasMany(Group)
Group.hasMany(User)

User
  .sync({ force: true })
  .then(function() { return User.create({ username: 'John' }) })
  .then(function(john) { return User.create({ username: 'Jane' }) })
  .then(function(jane) { return User.create({ username: 'Pete' }) })
  .then(function(pete) { return Group.findOrCreate({id: 1}) })
  .then(function(group) {return group.setUsers([john, jane, pete])})
  .then(function(result) { console.log(result)})
})


推荐答案

蓝鸟的方式是集合辅助函数

如果要并行创建它们,请使用 map

If you want to create them in parallel, use map:

User.sync({ force: true })
  .then(function() {
    return Promise.map( ['John', 'Jane', 'Pete'], function(name) {
      return User.create({ username: name });
    })
  }).spread(function(john, jane, pete) {
    console.log("we just created 3 users :)")
    console.log("this is john:")
    console.log(john.values)
    console.log("this is jane:")
    console.log(jane.values)
    console.log("this is pete:")
    console.log(pete.values)
  })

如果您需要连续创建它们,只需将其更改为 mapSeries (3.0 +)。

If you need to create them consecutively, just change it to mapSeries (3.0+).

如果数组不需要是动态的,您只想通过承诺链传递共享值,如示例中所示,请查看如何访问以前的承诺结果.then()链?

If the array doesn't need to be dynamic, and you simply want to pass a shared value through the promise chain like in your example, have a look at How do I access previous promise results in a .then() chain?.

这篇关于Sequelize中的承诺:如何从每个承诺中获得结果的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆