4

我成功地将 Bootstap 添加到 Angular 项目中,并希望对 MDBoostrap 做同样的事情(我不知道 Bootstrap 是否仍然有用?)

我按照这里的官方程序使用 npm 安装。

但是当我尝试导入样式时出现以下错误

在此处输入图像描述

这是我的app.module.ts文件:

import { BrowserModule } from '@angular/platform-browser';
import { NgModule, NO_ERRORS_SCHEMA } from '@angular/core';
import { MDBBootstrapModule } from 'angular-bootstrap-md';
/*Ajout Test du dossier ngx bootstrap*/
import { BsDropdownModule } from 'ngx-bootstrap/dropdown';
import { TooltipModule } from 'ngx-bootstrap/tooltip';
import { ModalModule } from 'ngx-bootstrap/modal';
import { AppComponent } from './app.component';

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
    /*Ajout*/
    MDBBootstrapModule.forRoot(),
    BsDropdownModule.forRoot(),
    TooltipModule.forRoot(),
    ModalModule.forRoot()
  ],
  schemas: [ NO_ERRORS_SCHEMA ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }

我的angular-cli.json文件:

"index": "index.html",
      "main": "main.ts",
      "polyfills": "polyfills.ts",
      "test": "test.ts",
      "tsconfig": "tsconfig.app.json",
      "testTsconfig": "tsconfig.spec.json",
      "prefix": "app",
      "styles": [

        "../node_modules/font-awesome/scss/font-awesome.scss",
        "../node_modules/angular-bootstrap-md/scss/bootstrap/bootstrap.scss",
        "../node_modules/angular-bootstrap-md/scss/mdb-free.scss",
        "./styles.scss"
      ],
      "scripts": [
        "../node_modules/chart.js/dist/Chart.js",
        "../node_modules/hammerjs/hammer.min.js"
      ],

import我的style.scss文件中:

@import "../node_modules/bootstrap/dist/css/bootstrap.min.css"; //OK
@import "../node_modules/angular-bootstrap-md/scss/bootstrap/bootstrap.scss"; //OK
@import "../node_modules/font-awesome/scss/font-awesome.scss"; // ERROR : ../fonts/fontawesome-webfont.eot
@import "../node_modules/angular-bootstrap-md/scss/mdb-free.scss"; // ERROR : ../font.roboto.Robto-Bold.eot

就像我评论过的前 2 个导入是可以的,但其他 2 个会抛出错误。

看着错误,我感觉系统正在查看一个myProject/font确实不存在但我真的不明白为什么的repesitory。

更新 :

我发现该roboto.scss文件使用相对 URL

@font-face {
font-family: "Roboto";
src: local(Roboto Thin), url('#{$roboto-font-path}Roboto-Thin.eot');
src: url("#{$roboto-font-path}Roboto-Thin.eot?#iefix") format('embedded-opentype'),
    url("#{$roboto-font-path}Roboto-Thin.woff2") format("woff2"),
    url("#{$roboto-font-path}Roboto-Thin.woff") format("woff"),
    url("#{$roboto-font-path}Roboto-Thin.ttf") format("truetype");

font-weight: 200;

}

其中$roboto-font-path= ../fonts/roboto/。这显然是问题所在。

可以使用resolve-url-loader和更改配置来解决它

{
test: /\.scss$/,
loaders: ['style', 'css', 'resolve-url', 'sass?sourceMap']
}

但使用angular-cli它不能是我的情况。

更新 2:

事实上它有效!

文件中的没有@import....用。styles.scss

我犯的最大错误是尝试使用 Mdb pro 组件并在其上测试我的配置......对不起,伙计们。

谢谢你的帮助。

4

1 回答 1

3

漩涡,

第一件事:您使用哪种操作系统?Windows、Linux 还是 Mac?

第二件事:您是否使用--style=scss参数创建了项目?

请按照以下步骤使其正常工作:
ng new name --style=scss

然后安装软件包:

npm install angular-md-bootstrap --save

然后将导入添加到app.module.ts

import { NgModule, NO_ERRORS_SCHEMA } from '@angular/core';
import { MDBBootstrapModule } from 'angular-bootstrap-md';

然后将样式和脚本位置添加到tsconfig.app.json文件中:

"styles": [
"../node_modules/font-awesome/scss/font-awesome.scss",
"../node_modules/angular-bootstrap-md/scss/bootstrap/bootstrap.scss",
"../node_modules/angular-bootstrap-md/scss/mdb-free.scss",
"./styles.scss"
],
"scripts": [
"../node_modules/chart.js/dist/Chart.js",
"../node_modules/hammerjs/hammer.min.js"
],

然后使用以下方法安装其他库:

npm install -–save chart.js@2.5.0 font-awesome hammerjs

然后tsconfig.json在根目录中添加文件:

"include": ["node_modules/angular-bootstrap-md/**/*.ts",  "src/**/*.ts"],

对于目录tsconfig.app.json中的文件,/src我添加了:

"include": [ "**/*.ts", "../node_modules/angular-bootstrap-md/index.ts" ]

现在一切都应该正常工作。


如果您尚未创建具有--style=scss属性的项目,则必须执行以下操作:

ng set defaults.styleExt scss

并将每个扩展名从 更改.css.scss。对于我的项目,我更改了文件:

src/styles.css -> src/styles.scss,

src/app/app.component.css -> src/app/app.component.scss

而在src/app/app.components.ts

stylesUrls ['./app.component.css'] -> stylesUrls: ['./app.component.scss']

现在,即使您没有使用--styles=scss.

对于您现有的 projectdDelete 从app.module.ts这些行:

import { BsDropdownModule } from 'ngx-bootstrap/dropdown';
import { TooltipModule } from 'ngx-bootstrap/tooltip';
import { ModalModule } from 'ngx-bootstrap/modal';

最好的问候,
来自 MDBootstrap 的 Damian

于 2018-02-14T07:06:05.927 回答