i18n编译失败,Sass - 找不到资源文件

时间:2017-06-22 18:01:29

标签: angular sass

在我们的Angular 4应用中,我们正在尝试使用 i18n ,问题是当我们运行npm run i18n时,我们收到错误'找不到资源文件':

  

错误:编译失败。找不到资源文件:C:/ Projekte / Git / KWKPortal / App / src / app / core / menu / src / app / shared / styles / variables       在ModuleResolutionHostAdapter.readResource(C:\ Projekte \ Git \ KWKPortal \ App \ node_modules \ @angular \ compiler-cli \ src \ compiler_host.js:387:19)       在CompilerHost.loadResource(C:\ Projekte \ Git \ KWKPortal \ App \ node_modules \ @angular \ compiler-cli \ src \ compiler_host.js:251:29)       在Object.get(C:\ Projekte \ Git \ KWKPortal \ App \ node_modules \ @angular \ compiler \ bundles \ compiler.umd.js:27273:103)       在DirectiveNormalizer._fetch(C:\ Projekte \ Git \ KWKPortal \ App \ node_modules \ @angular \ compiler \ bundles \ compiler.umd.js:14095:43)       在C:\ Projekte \ Git \ KWKPortal \ App \ node_modules \ @angular \ compiler \ bundles \ compiler.umd.js:14211:68       在Array.map(本机)       在DirectiveNormalizer._loadMissingExternalStylesheets(C:\ Projekte \ Git \ KWKPortal \ App \ node_modules \ @angular \ compiler \ bundles \ compiler.umd.js:14211:14)       在C:\ Projekte \ Git \ KWKPortal \ App \ node_modules \ @angular \ compiler \ bundles \ compiler.umd.js:14214:26       at process._tickCallback(internal / process / next_tick.js:109:7)       在Module.runMain(module.js:606:11)   提取失败

这就是我导入variables.scss的方式:

@import "src/app/shared/styles/variables";

我也试过了.scss,但它没有用。

那是我的文件夹结构:

enter image description here

这是我的package.json

{
  "name": "app",
  "version": "0.0.0",
  "license": "MIT",
  "scripts": {
    "ng": "ng",
    "start": "ng serve",
    "build": "ng build",
    "test": "ng test",
    "lint": "ng lint",
    "e2e": "ng e2e",
    "i18n": "ng-xi18n"
  },
  "private": true,
  "dependencies": {
    "@angular/animations": "^4.1.3",
    "@angular/common": "^4.0.0",
    "@angular/compiler": "^4.0.0",
    "@angular/core": "^4.0.0",
    "@angular/forms": "^4.0.0",
    "@angular/http": "^4.0.0",
    "@angular/platform-browser": "^4.0.0",
    "@angular/platform-browser-dynamic": "^4.0.0",
    "@angular/router": "^4.0.0",
    "@progress/kendo-angular-dropdowns": "^1.0.10",
    "@progress/kendo-angular-l10n": "^1.0.0",
    "@progress/kendo-angular-layout": "^1.0.3",
    "@progress/kendo-theme-default": "^2.37.1",
    "core-js": "^2.4.1",
    "rxjs": "^5.1.0",
    "zone.js": "^0.8.4"
  },
  "devDependencies": {
    "@angular/cli": "1.0.3",
    "@angular/compiler-cli": "^4.0.0",
    "@types/jasmine": "2.5.38",
    "@types/node": "~6.0.60",
    "codelyzer": "~2.0.0",
    "jasmine-core": "~2.5.2",
    "jasmine-spec-reporter": "~3.2.0",
    "karma": "~1.4.1",
    "karma-chrome-launcher": "~2.1.1",
    "karma-cli": "~1.0.1",
    "karma-coverage-istanbul-reporter": "^0.2.0",
    "karma-jasmine": "~1.1.0",
    "karma-jasmine-html-reporter": "^0.2.2",
    "node-sass": "^4.5.3",
    "protractor": "~5.1.0",
    "ts-node": "~2.0.0",
    "tslint": "~4.5.0",
    "typescript": "~2.2.0"
  }
}

1 个答案:

答案 0 :(得分:4)

对于Sass - 找不到资源文件

将您的路径更改为:

var answers = [
   {answer: "foo",  isCorrect: false},
   {answer: "bar",  isCorrect: true},
   {answer: "foo2", isCorrect: false},
   {answer: "bar2", isCorrect: false}
]
function getRandom (ceiling) {
  return Math.floor(Math.random() * (ceiling || 1));
}
function fiftyFifty (answers) {
    var correct = answers.find(answer => answer.isCorrect);
    var incorrectAnswers = answers.filter(answer => !answer.isCorrect);
    // grab n answers unless there are less than n incorrect answers to choose from
    var numberOfIncorrects = Math.min(2, incorrectAnswers.length);
    var incorrectsToUse = [];
    for (var i = 0; i < numberOfIncorrects; i++) {
      let randomIndex = getRandom(incorrectAnswers.length);
      // splice elem out of array so it doesn't get randomly selected twice
      incorrectsToUse.push(incorrectAnswers.splice(randomIndex, 1)[0]);
    }
    return [correct].concat(incorrectsToUse);
}

console.log(fiftyFifty(answers));
console.log(fiftyFifty(answers));
console.log(fiftyFifty(answers));

和文件名:

@import "../../shared/styles/variables"; variables.scss

  

下划线让Sass知道该文件只是一个部分文件和   它不应该生成CSS文件。 Sass部分是   与@import指令一起使用。

_variables.scss错误:

toLowerCase

中添加--i18nFormat=xlf
package.json
相关问题