Questions tagged «angular-cli»

Angular CLI是用于构建,管理和部署Angular(2+版)应用程序的命令行界面。

17
如何查看Angular版本?
我@angular/cli使用以下命令通过npm 安装了软件包: npm install -g @angular/cli @ angular / cli版本1.4.2已成功安装。但这不是Angular版本,而是CLI版本。 运行后,ng new myapp如何检查创建的应用程序是哪个Angular版本?2.x,4.x?

8
升级到Angular4后找不到名称“ require”
我想在我的Angular项目中使用Chart.js。在以前的Angular2版本中,我一直使用'chart.loader.ts'来做到这一点,它具有: export const { Chart } = require('chart.js'); 然后在组件代码中,我只是 import { Chart } from './chart.loader'; 但是升级到cli 1.0.0和Angular 4之后,出现错误:“找不到名称'require'”。 重现该错误: ng new newapp cd newapp npm install chart.js --save echo "export const { Chart } = require('chart.js');" >> src/app/chart.loader.ts ng serve 在我的“ tsconfig.json”中, "typeRoots": [ "node_modules/@types" ], 在“ node_modules/@types/node/index.d.ts”中有: declare var …

13
如何结束服务或火力基地服务
我一直在使用Angular2进行Web开发,并一直使用Angular2和Firebase来运行本地服务器。使用Ionic创建服务器时,我找不到类似于键入quit的命令,因此每次都必须关闭终端选项卡。有没有一种方法可以结束服务器并恢复我的终端机标签? 谢谢。

20
重新安装angular-cli后,您必须位于angular-cli项目中才能使用build命令
我在全球安装了最新的angular-cli,并且我的项目正在成功构建。 在阅读针对另一个问题的建议解决方案时(https://github.com/angular/angular-cli/issues/917),我卸载了全局angular-cli并将其安装为dev-dependency。 另一个问题没有解决,所以我卸载了dev-dependency,然后再次在全局重新安装了angular-cli。现在,当我尝试执行ng build时,出现错误: 您必须在angular-cli项目中才能使用build命令 我的angular-cli版本没有更改。为什么我的项目没有被视为angular-cli项目?
117 angular-cli 

7
如何在angular-cli构建中包含自定义文件?
RE:Angular2 2.0.0,angular-cli v1.0.0-beta.11-webpack.8 如何在构建时告诉angular-cli在“ dist”的根目录中包含来自“ src / assets”的文件? 我们部署到Windows主机,需要包含一个“ web.config”文件来告诉IIS将所有内容路由到索引。我们在RC4之前就已经进行了此操作,但是由于所有更新,它都陷入了裂缝(我不记得我们是如何做到的)。 我一直在搜索GitHub存储库文档,但没有发现有关此主题的任何用处。也许我在错误的地方? 在ToC中,有一个项目符号“向构建中添加其他文件”,但是似乎该节不存在。



2
编写Karma-Jasmine单元测试用例时出现“错误:路由器没有提供者”
我们已经完成了一个angular2项目的设置,并在内部创建了一个模块(my-module),并在模块内部使用了以下cmd命令创建了一个组件(my-new-component): ng new angular2test cd angular2test ng g module my-module ng generate component my-new-component 创建设置和所有组件后,我们ng test从angular2test文件夹中的cmd 运行了命令。 以下文件是我们的my-new-component.component.ts文件: import { Component, OnInit } from '@angular/core'; import { Router, Routes, RouterModule } from '@angular/router'; import { DummyService } from '../services/dummy.service'; @Component({ selector: 'app-my-new-component', templateUrl: './my-new-component.component.html', styleUrls: ['./my-new-component.component.css'] }) export class MyNewComponentComponent …

6
如何使用ngFor循环进行迭代Map包含键作为字符串,值作为映射迭代
我是angular 5的新手,并尝试迭代包含打字稿中另一张地图的地图。下面的角度如何在这种映射下进行迭代是组件的代码: import { Component, OnInit} from '@angular/core'; @Component({ selector: 'app-map', templateUrl: './map.component.html', styleUrls: ['./map.component.css'] }) export class MapComponent implements OnInit { map = new Map<String, Map<String,String>>(); map1 = new Map<String, String>(); constructor() { } ngOnInit() { this.map1.set("sss","sss"); this.map1.set("aaa","sss"); this.map1.set("sass","sss"); this.map1.set("xxx","sss"); this.map1.set("ss","sss"); this.map1.forEach((value: string, key: string) => { console.log(key, value); …


8
如何在Angular项目中加载图像(和其他资产)?
我对Angular还是很陌生,所以我不确定这样做的最佳实践。 我使用了angular-cli并ng new some-project生成了一个新应用。 在它的“资产”文件夹中创建了一个“图像”文件夹,所以现在我的图像文件夹是 src/assets/images 在app.component.html(这是我的应用程序的根目录)中, <img class="img-responsive" src="assets/images/myimage.png"> 当我ng serve查看我的Web应用程序时,该图像不显示。 在Angular应用程序中加载图像的最佳实践是什么? 编辑:请参阅下面的答案。我的实际图像名称使用的是Angular不喜欢的空格。当我删除文件名中的空格时,图像正确显示。


10
如何将Angular CLI升级到最新版本
这个问题的答案是社区的努力。编辑现有答案以改善此职位。它目前不接受新的答案或互动。 使用ng --version我得到: @角度/ cli:1.0.0 这不是可用的最新版本。 由于我的系统上全局安装了Angular CLI,因此为了进行升级,我尝试了以下操作: npm update angular-cli -g 但是它不起作用,因为它保持为1.0.0版本。

2
angular2测试:由于它不是'input'的已知属性,因此无法绑定到'ngModel'
我正在尝试测试angular2双向绑定的控件input。这是错误: Can't bind to 'ngModel' since it isn't a known property of 'input'. app.component.html <input id="name" type="text" [(ngModel)]="name" /> <div id="divName">{{name}}</div> app.component.ts @Component({ selector: 'app-root', templateUrl: './app.component.html' }) export class AppComponent implements OnInit { name: string; } app.component.spec.ts import { TestBed, async } from '@angular/core/testing'; import { AppComponent } from …

16
如何卸载/升级Angular CLI?
当我尝试使用Angular CLI创建新项目时,请执行以下操作: ng n app 我收到此错误: fs.js:640返回binding.open(pathModule._makeLong(path),stringToFlags(flags),mode); ^ TypeError:路径必须是TypeError(本地)处的字符串或Buffer 如何升级或卸载Angular CLI?

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.