私はユーザーテーブルから2つの外部キーを作成しました。私はsubscriberId
列を取得し、検索クエリ中複数の外部キーを後尾に並べる1列のみを含む
`db.Subscription.belongsTo(db.User, {foreignKey: 'creatorId'});
db.Subscription.belongsTo(db.User, {foreignKey: 'subscriberId'});`
誰かが私がここで間違ってやっているものを見つけるしてくださいすることができ、ここで }, include: [ {model: User, foreignKey: 'creatorId', attributes: ['name', 'role', 'uid', 'imageUrl']}] })
をコードを入力する代わりにcreatorId
Subscription.findAll({ where: { subscriberId: req.decoded._id
が含まれています。
ありがとう、多くのディランが働いた。 :) –