Sequelize associations - please use promise-style instead(续集关联 - 请改用 promise 样式)
问题描述
我正在尝试将 3 个表连接在一起 Products
、Suppliers
和 Categories
,然后使用 SupplierID = 13代码>.我已阅读
您现在应该执行以下样式:
db.Model.find(something).then(函数(结果){//对结果做一些事情//您也可以将结果进行另一个查询并返回承诺.返回 db.anotherModel.find(results[0].anotherModelId);}).then(函数(结果){//做其他事情}).catch(函数(错误){控制台日志(错误);}).finally(函数() {//finally 总是被调用,不管//承诺是否解决了错误.//然而这个 finally 处理程序不接收任何参数.});
简而言之:
使用 .then
代替 .success
使用 .catch
而不是 .error
使用 .finally
而不是 .done
*注意:.finally
无论如何都会被调用.
I'm trying to join 3 tables together Products
, Suppliers
and Categories
and then get row with SupplierID = 13
. I have read How to implement many to many association in sequelize, there is explained how to associate 0:M
.
DB model:
Code:
var Sequelize = require('sequelize')
var sequelize = new Sequelize('northwind', 'nodejs', 'nodejs', {dialect: 'mysql',})
var Project = require('sequelize-import')(__dirname + '/models', sequelize, { exclude: ['index.js'] });
Project.Suppliers.hasMany(Project.Products, {foreignKey: 'SupplierID'});
Project.Products.belongsTo(Project.Suppliers, {foreignKey: 'SupplierID'});
Project.Categories.hasMany(Project.Products, {foreignKey: 'CategoryID'});
Project.Products.belongsTo(Project.Categories, {foreignKey: 'CategoryID'});
Project.Products
.find({
where: {
SupplierID: 13
},
include: [
Project.Suppliers,
Project.Category,
]
})
.success(function(qr){
if (qr == null) throw "Err";
console.log("---");
console.log(qr);
})
.error(function(err){
console.log("Err");
});
Log:
EventEmitter#success|ok is deprecated, please use promise-style instead.
EventEmitter#failure|fail|error is deprecated, please use promise-style instead.
Err
Update: 15 Jan 15 - added .finally()
handler. Also indicated how .then()
is being fed with an argument from the previous handler and how to perform the next sequenced query.
The .success
, .error
and .done
handlers are deprecated. The errors are not critical and it is likely that backwards compatibility will be maintained on them. But you should still change it.
As per promise A specs: http://wiki.commonjs.org/wiki/Promises/A
You now should do the following style:
db.Model.find(something)
.then(function(results) {
//do something with results
//you can also take the results to make another query and return the promise.
return db.anotherModel.find(results[0].anotherModelId);
}).then(function(results) {
//do something else
}).catch(function(err) {
console.log(err);
}).finally(function() {
// finally gets called always regardless of
// whether the promises resolved with or without errors.
// however this finally handler does not receive any arguments.
});
In short:
Use .then
instead of .success
Use .catch
instead of .error
Use .finally
instead of .done
*note: .finally
will always get called regardless.
这篇关于续集关联 - 请改用 promise 样式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:续集关联 - 请改用 promise 样式


- 如何使用 JSON 格式的 jQuery AJAX 从 .cfm 页面输出查 2022-01-01
- 400或500级别的HTTP响应 2022-01-01
- Quasar 2+Apollo:错误:找不到ID为默认的Apollo客户端。如果您在组件设置之外,请使用ProvideApolloClient() 2022-01-01
- 失败的 Canvas 360 jquery 插件 2022-01-01
- Fetch API 如何获取响应体? 2022-01-01
- addEventListener 在 IE 11 中不起作用 2022-01-01
- CSS媒体查询(最大高度)不起作用,但为什么? 2022-01-01
- Css:将嵌套元素定位在父元素边界之外一点 2022-09-07
- Flexslider 箭头未正确显示 2022-01-01
- 使用RSelum从网站(报纸档案)中抓取多个网页 2022-09-06