如何在从关系创建之前使用检查数据查找或创建多个在风帆上?
示例模型:
1. Thread.js
module.exports = {
attributes: {
name: { type: "string" },
streams: {
collection: "stream",
via: "thread"
}
},
schema: true
};
2. Stream.js
module.exports = {
attributes: {
title: { type: "string" },
thread: {
model: "thread"
}
},
schema: true
};
如何使用唯一的流ID创建线程,我的示例代码:
Thread.findOrCreate({streams: {$in: ["1323","3434"] } }, {name: "me on me"});
如果在collecton上没有退出的流有很多,可以创建线程吗?怎么做...谢谢