0

我在我的网络应用程序中使用了seedstack,我想知道是否有办法添加角度材料。

注意:我使用 pom.xml 来配置我的依赖项,我还使用种子 16.7.4 版本和 angular 1.4.14 版本。

我想补充一下,对我的 pom 的以下依赖:

<dependency>
<groupId>org.seedstack.addons.w20</groupId>
<artifactId>w20-bridge-web-material-theme</artifactId>
</dependency>

但是当我尝试访问应用程序时出现此错误:

[ng:areq] http://errors.angularjs.org/1.4.14/ng/areq?  p0=w20MaterialCultureMenuController&p1=not%20a%20function%2C%20got%20undefined

请在下面找到我使用的网络依赖项:

<dependency>
        <groupId>org.seedstack.addons.w20</groupId>
        <artifactId>w20-bridge-web-business-theme</artifactId>
    </dependency>

    <dependency>
        <groupId>org.seedstack.addons.i18n</groupId>
        <artifactId>i18n-web</artifactId>
    </dependency>

    <dependency>
        <groupId>org.seedstack.addons.w20</groupId>
        <artifactId>w20-bridge-web</artifactId>
    </dependency>
    <dependency>
        <groupId>org.seedstack.addons.w20</groupId>
        <artifactId>w20-bridge-web-dataviz</artifactId>
    </dependency>
    <dependency>
        <groupId>org.seedstack.addons.w20</groupId>
        <artifactId>w20-bridge-web-bootstrap-3</artifactId>
    </dependency>
    <dependency>
        <groupId>org.seedstack.addons.w20</groupId>
        <artifactId>w20-bridge-web-business-theme</artifactId>
    </dependency>

感谢您的任何帮助。

4

1 回答 1

0

您不能在同一个 W20 应用程序中混合多个 CSS 框架实现或多个主题:

  • w20-bridge-web-material-theme依赖依赖w20-bridge-web-material依赖。
  • w20-bridge-web-business-theme依赖依赖w20-bridge-web-bootstrap-3依赖。

您必须选择其中之一,但不能在类路径中同时拥有两者。

于 2018-04-18T15:05:45.173 回答