1.ng-repeat 数组数据中,不允许数组中有相同的两个数据,这个时候用下标去管理数据便可以解决这个问题 ng-repeat="item in list track by $index" ng-repeat 自带的属性有 : $index:下标; $first:第一个: $last:最后一个: 2.动态赋值 class 名 class ng-class="{'btn-info':item.isKill == 'Y'}": 第二种情况: <li ng-rep…
一. Angular常用命令 1. ng new 文件夹名 (新建项目,选择y使用路由) 2. ng serve --open (默认浏览器运行项目) 3. ng serve --port 6060 (运行多个项目在不同端口) 4. ng g (提示能创建的各种东西) 5. ng g component components/news (在app下生成components文件和news组件并自动导入组件至app.module.ts)…
安装Node 先去Node官网下载并安装Node.js Install the Angular CLI(安装Angular CLI) npm install -g @angular/cli Create a new application(创建新项目) ng new your-application-name Serve the application(启动项目) ng serve Create the component(创建component) ng generate component y…