suchen

Heim  >  Fragen und Antworten  >  Hauptteil

javascript - angular2/4中,组织一个页面的容器应该是component还是module?

如题,今天按照官方说法搭了ng的demo,但是有一点不明白。

在网上看有些人是把ngmodule作为一个容器来用(比如首页为一个ngmodule,后台登录页为一个ngmodule)。

然后通过这个module级别的容器组织页面结构,和引入的组建和服务。

我就新建了个homemodule(里面声明了一个组件,组件的selector是test1)组织首页的内容,然后在根module中imports了。

然后买根组件的bootstrap组件中写入了<test1></test1>为什么它告诉我声明是错误的?一定要在根组件中声明这个组件吗?那不是项目大起来会乱成一片

过去多啦不再A梦过去多啦不再A梦2776 Tage vor583

Antworte allen(3)Ich werde antworten

  • 某草草

    某草草2017-05-15 17:15:59

    参考Angular中文文档NG模块部分。
    module中有AppModule这个主模块,还有feature module等,当项目复杂时feature module可以用来放多个具有相同特性的组件、指令、服务等。在使用feature module时要export出你declarations中需要暴露给主Module的内容。主Module要import其他feature module

    Antwort
    0
  • 为情所困

    为情所困2017-05-15 17:15:59

    一句话概括:
    如果你的是小项目,别管那么多,一个根module解决所有;
    如果你是做中大型的项目,建议按业务模块划分module。

    Antwort
    0
  • 大家讲道理

    大家讲道理2017-05-15 17:15:59

    bootstrap 只需要在appModule中声明就好了,剩下的可以用路由来做特性模块

    Antwort
    0
  • StornierenAntwort