- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 Sequelize 中,如果我有一个简单的父子关系,我可以设置没有整个对象的外键列:
Chapter.belongsTo(Book);
// this works, but I had to query the DB for the 'book' object
return Chapter.create({title: 'The Title'}).then(function(chapter) {
return chapter.setBook(book);
}
// this also works, if I happen to know the book ID already
return Chapter.create({
title: 'The Title',
bookId: 123
})
User.belongsToMany(Group, { through: 'UsersGroup' });
Group.belongsToMany(User, { through: 'UsersGroup' });
return User.create({
name: 'John Doe',
groupIds: [ 1, 2, 3 ] // does not work :(
})
最佳答案
哎呀,脑子有毛病。原来我错过了这一点 documentation :
You don't have to pass in a complete object to the association functions, if your associated model has a single primary key:
user.addPicture(req.query.pid)
// Here pid is just an integer, representing the primary key of the picture
return User.create({name: 'John Doe'}).then(function(user) {
return user.setGroups([1, 2, 3]);
})
关于sequelize.js - 当我拥有所有组 ID 时,Sequelize 中是否有 "user.setGroups()"的快捷方式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28751483/
我想使用 setGroup() 将通知分配给一个组,用于堆叠通知并汇总它们。 赞HERE final static String GROUP_KEY_SAPPHIRE = "group_key_ema
我正在尝试创建通知组,这是我的代码: // Build the notification, setting the group appropriately Notification notif =
我目前正在奥利奥和 Lollipop 设备上进行测试。到目前为止我所做的: final static String GROUP_KEY_NOTIFY = "group_key_notify"; int
来自APUE #include /* on Linux */ int setgroups(int ngroups, const gid_t grouplist[]); The setgroups f
我喜欢为我的消息应用程序提供一个 stck 类型的通知,它是一个网络应用程序。我的通知正在运行。但是每次收到新通知时,之前的通知都会消失,然后会出现新通知。当我用谷歌搜索时,我发现可以使用 setGr
我检查了问题: setGroup() is undefined for the type NotificationCompat.Builder? 但这并没有帮助。 我有一个从 eclipse 导入的项
我将多个通知堆叠在使用以下方法创建的 bundle 中: setGroup("groupname"); 和 setGroupSummary(true); 方法。 每个通知都有一个 Action 。操作
我在理解 setGroup() 的目标时遇到了一些麻烦方法。 正如文档所说: ...Grouped notifications may display in a cluster or stack on
我想使用 setGroup 堆叠通知(如此处所述:https://developer.android.com/training/wearables/notifications/stacks.html)
我正在测试可堆叠通知 (Stacking Notifications article) . 我检测到在某些情况下,在运行 android 4.X KitKat 的设备中调用 notify() 后通知不
本文整理了Java中org.gradle.api.tasks.bundling.Zip.setGroup()方法的一些代码示例,展示了Zip.setGroup()的具体用法。这些代码示例主要来源于Gi
现在我正在使用 notificationID 将已经可见的通知更新为新通知。我真的很想看到有关如何使用这两种方法以及通知分组的实际示例。 我正在使用带有 4.3 的 galaxy S3,我认为它应该支
来自 APUE #include /* on Linux */ int setgroups(int ngroups, const gid_t grouplist[]); The setgroups
我有一个找不到答案的问题。我试过 AndroidDeveloper 教程,我在 stackoverflow 和谷歌上搜索过,但要么我的搜索技能太棒了,要么我认为没有答案可以解决我的问题。 当有多个消息
本文整理了Java中org.apache.activemq.transport.discovery.zeroconf.ZeroconfDiscoveryAgent.setGroup()方法的一些代码示
在 Sequelize 中,如果我有一个简单的父子关系,我可以设置没有整个对象的外键列: Chapter.belongsTo(Book); // this works, but I had to qu
我是一名优秀的程序员,十分优秀!