Angular中严格的mime类型错误

时间:2018-04-02 10:10:50

标签: angular typescript

我在Angular 5.x上有项目 试图导入this editor

它是众所周知的Ace editor

之上的TypeScript包装器

编辑工作,我在我的项目中看到它,一切都很好。直到我尝试更改某些设置。默认语言是SQL。我需要编辑JSON。所以我使用这样的语法:

<div
  ace-editor
  [(text)]="json"
  [mode]="'json'"
  [theme]="'eclipse'"
  [readOnly]="false"
  [autoUpdateContent]="true"
  [durationBeforeCallback]="1000"
></div>

并在浏览器的控制台中获得以下错误(Chrome,最新):

  

拒绝执行来自&#39; http://localhost:4200/mode-json.js&#39;的脚本   因为它的MIME类型(&#39; text / html&#39;)不可执行,而且是严格的MIME   启用了类型检查。

以下行添加到.angular-cli.json文件中:

scripts: [
  "../node_modules/ace-builds/src-min/ace.js",
  "../node_modules/ace-builds/src-min/theme-eclipse.js"
]

那么......有人可以给我一个答案,如何在没有拐杖的情况下解决这个问题?

0 个答案:

没有答案