angular入门

1.npm install -g @angular/cli:安装angular脚手架

2.ng new my-app:创建项目

3.ng serve:启动项目(http://localhost:4200)

4.ng g c /components/user:在src/app/路径下新增一个/components/user组件

5.{{}}:数据绑定

6.*ngFor:循环

7.(click):事件绑定

8.*ngIf:if语句

9.[(ngModel)]:双向数据绑定

注意:使用双向数据绑定需要引入FormsModule模块

app.ts

你可能感兴趣的:(angular入门)