返回介绍

共享模块

发布于 2019-10-12 12:56:38 字数 3266 浏览 1818 评论 0 收藏 0

共享模块

Nest Modules can export their components. It means that we can easily share component instance between them. The best way to share an instance between two or more modules is to create Shared Module.

Nest模块可以导出其组件。也就是说我们可以轻松在模块之间共享组件。 模块间共享组件的最好方式是创建共享模块

For example - if we want to share ChatGateway component across entire application, we could do it in this way:

例如---如果我们想在整个应用程序中共享ChatGateway组件,我们可以按照如下方式进行:

import { Module, Shared } from '@nestjs/common';

@Shared()
@Module({
    components: [ ChatGateway ],
    exports: [ ChatGateway ]
})
export class SharedModule {}

Then, we only have to import this module into another modules, which should share component instance:

接下来,我们只需要将这个要分享组件实例的模块导入到其他模块中即可:

@Module({
    modules: [ SharedModule ]
})
export class FeatureModule {}

第三方模块

If you want to share 3rd-party module, you can use Shared as a function:

如果你想共享第三方模块,你可以将Shared看作一个函数来使用:

@Module({
    modules: [ Shared()(ThirdPartyModule) ]
})
export class FeatureModule {}

范围

If you don't want to share components across entire application, but only within smaller, defined scope, you can use a namespace-scoped @Shared('namespace') module.

如果你不想在整个应用程序中共享组件,只想在比较小的指定的范围内分享组件的话,你可以使用namespace-scoped*``@Shared('namespace')模块。

@Module({
    modules: [ Shared('namespace')(ThirdPartyModule) ]
})
export class FeatureModule {}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文