你好我已经研究过这个问题并且已经实现了两个适用于其他人的解决方案,但我仍然遇到同样的错误。我在这里阅读本教程:
https://devblog.dymel.pl/2016/10/25/angular2-cli-with-aspnet-core-application-tutorial/
然而,当在前端目录中运行npm start时,我收到一条错误,内容为
解析angular-cli.json失败。请使你的angular-cli.json有效。 SyntaxError:意外的令牌?在第0位。
我在这里尝试了解决方案:
Parsing angular-cli.json failed
通过使用angular-cli构建一个新项目,在更改名称和OutDir时粘贴新项目中的angular-cli.json文件。然后我去了工具 - 选项 - 文本编辑器 - 一般 - 并且未经检查" AutoDetect UTF 8编码,没有签名"。
但是我仍然得到同样的错误。这真是令人沮丧。
角cli.json
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"project": {
"name": "MYPROJ"
},
"apps": [
{
"root": "src",
"outDir": "../Backend/wwwroot",
"assets": [
"assets",
"favicon.ico"
],
"index": "index.html",
"main": "main.ts",
"polyfills": "polyfills.ts",
"test": "test.ts",
"tsconfig": "tsconfig.app.json",
"testTsconfig": "tsconfig.spec.json",
"prefix": "app",
"styles": [
"styles.css"
],
"scripts": [],
"environmentSource": "environments/environment.ts",
"environments": {
"dev": "environments/environment.ts",
"prod": "environments/environment.prod.ts"
}
}
],
"e2e": {
"protractor": {
"config": "./protractor.conf.js"
}
},
"lint": [
{
"project": "src/tsconfig.app.json"
},
{
"project": "src/tsconfig.spec.json"
},
{
"project": "e2e/tsconfig.e2e.json"
}
],
"test": {
"karma": {
"config": "./karma.conf.js"
}
},
"defaults": {
"styleExt": "css",
"component": {}
}
}
答案 0 :(得分:0)
要解决这个问题,我必须从头开始重新启动教程。但 之前 这样做我不得不去:
工具|选项|文字编辑器|常规:然后取消选中自动检测无签名的UTF-8编码和遵循项目编码惯例。
然后开始教程,一切都应该有效。无需删除和重新添加angular-cli.json文件或更改文本编辑器设置或确保文件未使用UTF-BOM都可以正常工作。根据我的经验,如果您收到此错误,必须从开始 调整设置