代码之家  ›  专栏  ›  技术社区  ›  Walid Ammar

从Strapi中的另一个插件调用模型

  •  0
  • Walid Ammar  · 技术社区  · 6 年前

    我有一个 Notification 哪个型号 belongsToMany users-permissions

    我有另一个型号叫 Profile 哪一个 belongsToOne 用户。

    现在,我想 populate 相关通知 user 以及他们的 profile ...

     await strapi.query("user", "users-permissions").find({_id: `model id`}).populate('profile')
    

    Impossible to find the plugin where strapi.query has been called. 对我说。

    notification.user.populate('profile')
    

    运气也不好

    strapi.plugins["users-permissions"].models.user 没有定义!

    1 回复  |  直到 6 年前
        1
  •  0
  •   Jim LAURIE    6 年前

    你不需要 query

    您必须使用 User Users & Permissions 插件。

    return strapi.plugins['users-permissions'].models.user.
      .findOne(user_id)
      .populate('profile');
    
        2
  •  0
  •   simonwidjaja    5 年前

    我也有同样的问题。 所有这些都是未定义的:

    strapi.query
    strapi.plugins
    

    全球 strapi