- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
一个用户可以有多个标签对象。一个 Tag 对象属于一个用户。一个标签有很多交易。一笔交易属于一个标签。用户有很多交易。一个交易可以有多个用户。
var User = sequelize.define('User', {
id: {
type: Sequelize.BIGINT,
autoIncrement: true,
primaryKey: true
},
...
}, { timestamps: false, freezeTableName: true, tableName: 'register'});
var Tag = sequelize.define('Tag', {
tagId: {
type: Sequelize.STRING(50),
primaryKey: true,
allowNull: false
},
...
}, { timestamps: false, freezeTableName: true, tableName: 'tag'});
var Transaction = sequelize.define('Transaction', {
id: {
type: Sequelize.BIGINT,
autoIncrement: true,
primaryKey: true
},
active: {
type: Sequelize.BOOLEAN,
defaultValue: true
}
}, { timestamps: false, freezeTableName: true, tableName: 'transaction'});
var UserTx = sequelize.define('UserTx', {
id: {
type: Sequelize.BIGINT,
autoIncrement: true,
primaryKey: true
}
},
{ timestamps: false, freezeTableName: true, tableName: 'user_transaction'});
User.hasMany(Tag, {foreignKey: 'owner_id', foreignKeyConstraint: true});
Tag.belongsTo(User, {foreignKey: 'owner_id', foreignKeyConstraint: true});
Tag.hasMany(Transaction, {foreignKey: 'tag_id', foreignKeyConstraint: true});
Transaction.belongsTo(Tag, {foreignKey: 'tag_id', foreignKeyConstraint: true});
User.belongsToMany(Transaction, {through: {model: UserTx, unique: false}, foreignKey: 'user_id'});
Transaction.belongsToMany(User, {through: {model: UserTx, unique: false}, foreignKey: 'tx_id'});
我正在尝试返回给定用户拥有的 Tag 对象的列表,以及用户与其关联的 Transactions 的 Tag 对象。在普通 SQL 中:
select * from tag
left outer join transaction on tag."tagId" = transaction.tag_id
left outer join user_transaction on transaction.id = user_transaction.tx_id
where tag.owner_id = ? or user_transaction.user_id = ?
我当前的 Sequelize 查询:
Tag.findAll({
where: { owner_id: userId }, // missing OR user_transaction.user_id = userId
include: [{
model: Transaction,
attributes: ['id'],
through: {model: UserTx, where: {user_id: userId}, attributes: ['user_id', 'tx_id']},
where: {
active: true
},
required: false, // include Tags that do not have an associated Transaction
}]
})
调用此查询时,出现以下错误:
Unhandled rejection TypeError: Cannot call method 'replace' of undefined
at Object.module.exports.removeTicks (/site/services/node_modules/sequelize/lib/utils.js:343:14)
at Object.module.exports.addTicks (/site/services/node_modules/sequelize/lib/utils.js:339:29)
at Object.QueryGenerator.quoteIdentifier (/site/services/node_modules/sequelize/lib/dialects/postgres/query-generator.js:843:20)
at generateJoinQueries (/site/services/node_modules/sequelize/lib/dialects/abstract/query-generator.js:1207:72)
at Object.<anonymous> (/site/services/node_modules/sequelize/lib/dialects/abstract/query-generator.js:1388:27)
at Array.forEach (native)
at Object.QueryGenerator.selectQuery (/site/services/node_modules/sequelize/lib/dialects/abstract/query-generator.js:1387:10)
at QueryInterface.select (/site/services/node_modules/sequelize/lib/query-interface.js:679:25)
at null.<anonymous> (/site/services/node_modules/sequelize/lib/model.js:1386:32)
在 removeTicks 函数中设置断点并在“s”(列名称属性)上设置监视,我注意到以下内容:
s = "Transactions"
s = "Transactions.id"
s = "Transactions.undefined" // should be Transactions.UserTx ?
s = "user_id"
s = "Transactions.undefined.user_id"
s = "Transactions.undefined"
s = "tx_id"
s = "Transactions.undefined.tx_id"
我对 N:M 的用法不正确吗?我在其他地方的“查找”查询中成功使用了“通过”构造,但由于此“通过”嵌套在包含中,因此它的行为似乎有所不同(例如要求我显式通过.model)
如有任何帮助,我们将不胜感激!
最佳答案
重现 TypeError: Cannot call method 'replace' of undefined
你定义的 n:m 关系对我来说很好。我在 test script 中重现了 TypeError并且您对 through.where
的使用对我来说也很好(文档 here)。这可能是 Sequelize 中的错误。
解决您的问题的方法
查找用户 X 拥有的所有标签,或与用户 X 关联超过 1 个交易的一种方法是使用 2 次 findAll 调用,然后对结果进行重复数据删除:
function using_two_findall(user_id) {
var tags_associated_via_tx = models.tag.findAll({
include: [{
model: models.transaction,
include: [{
model: models.user,
where: { id: user_id }
}]
}]
});
var tags_owned_by_user = models.tag.findAll({
where: { owner_id: user_id }
});
return Promise.all([tags_associated_via_tx, tags_owned_by_user])
.spread(function(tags_associated_via_tx, tags_owned_by_user) {
// dedupe the two arrays of tags:
return _.uniq(_.flatten(tags_associated_via_tx, tags_owned_by_user), 'id')
});
}
另一种方法是像您建议的那样使用原始查询:
function using_raw_query(user_id) {
var sql = 'select s05.tag.id, s05.tag.owner_id from s05.tag ' +
'where s05.tag.owner_id = ' + user_id + ' ' +
'union ' +
'select s05.tag.id, s05.tag.owner_id from s05.tag, s05.transaction, s05.user_tx ' +
'where s05.tag.id = s05.transaction.tag_id and s05.user_tx.tx_id = s05.transaction.id and ' +
's05.user_tx.user_id = ' + user_id;
return sq.query(sql, { type: sq.QueryTypes.SELECT})
.then(function(data_array) {
return _.map(data_array, function(data) {
return models.tag.build(data, { isNewRecord: false });;
});
})
.catch(function(err) {
console.error(err);
console.error(err.stack);
return err;
});
}
您可以在此答案上方链接的测试脚本中看到这两种技术。
作为快速说明,您可以看到我的原始查询与您的略有不同。当我运行你的时,它没有生成与问题描述相匹配的输出。另外,作为另一个快速说明,我的原始 SQL 查询使用联合。目前 Sequelize doesn't support them通过查找 API。
性能?
只看生成的 SQL,原始查询将比对 findAll 的两次调用更快。另一方面,对 findAll 的两次调用更清晰,过早的优化是愚蠢的。无论我使用哪种技术,我都会将其包装在 class method 中无论如何:)
关于sequelize.js - N :M association error when using include. 通过,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33596558/
在过去的几个月里,我一直在研究 Haskell,我遇到了一个我不太确定如何处理的单子(monad)的情况。 我有一个 a -> m a 类型的值第二个类型为 m (a -> a)我需要对它们进行组合,
仿函数有 (a -> b) -> m a -> m b 应用程序有 f (a -> b) -> f a -> f b Monad 有 m a -> (a -> m b) -> m b 但是,是否有扩展
我是 Haskell 的新手,我想知道是否有比 Hoogle 更好的方法来确定一个库功能是否重复? 举个例子:我有很多函数f :: Monad a => a -> m a我想链接在一起,比如 f123
将存储在一系列列表中的 m、m、n 维数组组合成一个 m、m、n 维数组的方法是什么? 示例: 这是三个包含 m,m,n 维数组的列表: list1 <- array (1, dim = c(5, 5
有没有办法写一个函数f::(a -> b -> ... -> t) -> (Monad m => m a -> m b -> ... -> m t ),基本上是 liftMn 对于任何 n? (编辑:
我有一个像这样的 pandas 数据框: df = pd.DataFrame({'A':[1,3,2,9],'B':[2,1,2,7],'C':[7,2,4,6],'D':[8,1,6,4]},ind
这个问题来自文章“Trivial Monad”,地址:http://blog.sigfpe.com/2007/04/trivial-monad.html 。提供的答案是 h x y = x >>= (
所以>>= :: m a -> (a -> m b) -> m b和>> :: m a -> m b -> m b . 而 f b -> f a . 但我想要一些能m a -> (a -> m b)
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 这个问题似乎与 help center 中定义的范围内的编程无关。 . 关闭 3 年前。 Improve
当我安装 rakudo来源: $ git clone git@github.com:rakudo/rakudo.git $ cd rakudo $ perl Configure.pl --gen-mo
我正在尝试通过查看一些练习来提高我的 Idris 技能 Software Foundations (最初是为 Coq 设计的,但我希望对 Idris 的翻译不会太糟糕)。我在使用 "Exercise:
我想知道以下是否可行。 与服务器交换密码时,应保护密码。因此,用户可以使用生成的 key kUser 来加密密码。 Encrypt(m, kUser) 生成加密消息 eU(m)。现在用户将此信息发送到
这两个表之间存在什么样的关系(1:1、1:m、m:m,等等)? CREATE TABLE IF NOT EXISTS `my_product` ( `id` int(11) NOT NULL au
有人可以解释类型的含义以及如何实现吗? class Foldable f where foldMap :: (Monoid m) => (a -> m) -> f a -> m 基于 https:
例如,在 MVC 应用程序中,我可以使用 Html 助手来创建这样的标签: @Html.LabelFor(m => m.ProductName) 我没有在任何地方声明变量“m”,但 IDE 会自动找出
更新:澄清、更明确的重点和缩短的示例: 我可以避免 M op+(M&&,M&&) 过载吗?假设,我想很好地处理 RValues?我想其他三个重载是必需的。 我首先使用 (&&,&&) 重载的原因: 通
假设我有一个函数,它接受两个向量并返回一个整数,例如一个向量中也存在另一个向量中的元素数量。喜欢: f m [,1] [,2] [,3] [1,] "c" "i" "c" [2,] "
我想将字符串(字幕)转换为: 585 00:59:59,237 --> 01:00:01,105 - It's all right. - He saw us! 586 01:00:01,139 -->
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 要求提供代码的问题必须表现出对所解决问题的最低限度理解。包括尝试过的解决方案、为什么它们不起作用,以及预
是否可以将 Linux 中的大文件将 d.m.Y h:m:s 转换为 Y-d-m h:m:s? 示例数据 "30.07.2016 00:00:00",DN123,PAPN,PAPN,TEST,9189
我是一名优秀的程序员,十分优秀!