使用Angular CLI快速创建Angular项目的一些基本概念和写法小结
angular cli是一个命令行界面工具,它可以创建项目、添加文件以及执行一大堆开发任务,比如测试、打包和发布,这里的快速开始就是基于这个命令。
开始项目前,你需要先安装node和npm,然后执行npm install -g @angular/cli安装angular cli。
一:用命令行新建一个项目
ng new newapp --skip-install cd newapp cnpm install ng serve --open
执行上面的命令就会自动新建一个angualr项目,并启动了项目。
其中--skip-install表示node包先不安装,我们接着使用cnpm install安装会快多了。
二:目录结构
现在来看看ng命令帮助我们生成了什么,也就是项目的目录结构,里面都是干什么的,先有个大致了解,你可以不知道全部,不过先记住下面几个个人感觉重要的:
1.src:应用代码存放的地方;
2.src/app:你的代码主要存放的地方,这样说也许不合适,不过你开发的时候,大部分时间都是在修改这里的代码;
3.src/assets:图片等存放的地方,构建时会复制到发布包里;
4.src/main.js:你基本不会修改它,它是程序的主入口;
5.src/styles.css:特别用的样式写在对应的地方,后面会说,对于公共的样式就会写在这里;
6.karma.conf.js:给karma的单元测试配置,当运行ng test时会用到它。
三:自定义组件
import { component } from '@angular/core'; @component({ selector: 'my-comp', template: '<ul><li *ngfor='let row of datalist'>id:{{row.id}} info:{{row.info}}</li></ul>', styles: [`ul{background-color: antiquewhite;padding-left: 10px;list-style: none;}`] }) export class mycomponent { datalist = [ { id: 1, info: "angular" }, { id: 2, info: "react" }, { id: 3, info: "vue" } ]; }
上面就已经定义好了一个非常简单的组件,不过在使用前,你还需要在模块中定义,此时就是src/app/app.module.ts中注册:
import { ngmodule } from '@angular/core'; import { mycomponent } from './my.component'; @ngmodule({ declarations: [ mycomponent ] }) ......
现在已经注册好了,你就可以使用了,上面的例子的使用方法很简单,就是自定义了一个标签my-comp,和普通的div的用法一模一样。
需要注意的是,为了方便查看,在注册的例子中我去掉了无关的代码,实际情况还好有包括启动,别的组件,服务等的注册,你可以看看命令行自动生成的别的指令,这里主要还是说明更重要的东西,下同。
类似angularjs,angular的selector除了上面的自定义标签,还有别的:
1.selector: 'element-name'//自定义标签选择器;
2.selector: '.class'//样式选择器;
3.selector: '[attribute]'//属性选择器;
4.selector: '[attribute=value]'//属性值选择器;
5.selector: ':not(sub_selector)'//取反选择器;
6.selector: 'selector1, selector2'//多种选择器。
四:自定义服务
和组件一样,我们先来定义一个服务。
import { injectable } from '@angular/core'; export class dataformat { id: number; info: string; } @injectable() export class myserv { getdata(): dataformat[] { return [ { id: 1, info: "angular" }, { id: 2, info: "react" }, { id: 3, info: "vue" } ]; } }
接着来注册它,服务和组件在注册上有点不同,我们现在先注册在主组件上面吧,默认就是在arc/app/app.component.ts文件中注册:
import { component } from '@angular/core'; import { myserv } from './my.service'; @component({ providers: [myserv] })
服务的使用也很简单,我们这里用构造函数来演示一下:
import { myserv } from './my.service'; ...... export class mycomponent { datalist: any[]; constructor(private demoservice: myserv) { this.datalist = this.demoservice.getdata(); } }
还记得自定义组件的代码吗?我们就在其中演示了服务的用法,上面只给出了修改的部分代码。
五:路由的使用
我们这里给出路由的一个简单用法,具体的细节和上面的类似,会单独再去讨论,这篇文章的目的就是快速入门使用。
为了方便演示,我们默认已经定义好了二个组件:mycomponent和my2component。
首先需要确定index.html页面的head标签中定义好了<base href="/" rel="external nofollow" >或动态生成该元素的脚本。
我们先在src/app/app.module.ts中注册路由:
...... import { routermodule } from '@angular/router'; @ngmodule({ declarations: [mycomponent,my2component], imports: [ routermodule.forroot([ {path: 'my',component: mycomponent}, {path: 'my2',component: my2component} ]) ] ...... }) ......
使用就很简单了:
<a routerlink="/my">tomycomp</a> <a routerlink="/my2">tomy2comp</a> <router-outlet></router-outlet>
点击tomycomp或者tomy2comp就会跳转对应的路由设置的组件了。
六:http
由于@angular/http库中的httpmodule保存着http相关的服务,需要先引入进来(这里是在src/app/app.module.ts中引入):
import { httpmodule } from '@angular/http'; @ngmodule({ imports: [httpmodule] }) ......
现在,http就是一个服务,下面简单演示一种用法:
...... import { http } from '@angular/http'; ...... constructor(private http: http) { http.get('assets/xxx.json').foreach(function (data) { console.log(data['_body']); }); } ......
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
下一篇: JQuery元素快速查找与操作