现在我们来学习如何配置 angular 2 的运行环境
在本章节中,我们会使用 JavaScript 创建一个简单的 Angular 的应用
本章节,我们使用到的目录如下图所示
创建目录
$ mkdir angular2-quickstart
$ cd angular2-quickstart
载入需要的库
创建 package.json 文件
$ npm init .
This utility will walk you through creating a package.json file.
It only covers the most common items, and tries to guess sensible defaults.
See `npm help json` for definitive documentation on these fields
and exactly what they do.
Use `npm install <pkg>` afterwards to install a package and
save it as a dependency in the package.json file.
Press ^C at any time to quit.
package name: (angularjs2) angular2-quickstart
version: (1.0.0)
description:
entry point: (index.js)
test command:
git repository:
keywords:
author:
license: (ISC)
About to write to angular2-quickstart/package.json:
{
"name": "angular2-quickstart",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC"
}
Is this ok? (yes)
然后将下面的内容复制黏贴到 package.json
{
"name": "angular2-quickstart",
"version": "1.0.0",
"scripts": {
"start": "npm run lite",
"lite": "lite-server"
},
"license": "ISC",
"dependencies": {
"@angular/common": "2.0.0",
"@angular/compiler": "2.0.0",
"@angular/core": "2.0.0",
"@angular/forms": "2.0.0",
"@angular/http": "2.0.0",
"@angular/platform-browser": "2.0.0",
"@angular/platform-browser-dynamic": "2.0.0",
"@angular/router": "3.0.0",
"@angular/upgrade": "2.0.0",
"core-js": "^2.4.1",
"reflect-metadata": "^0.1.3",
"rxjs": "5.0.0-beta.12",
"zone.js": "^0.6.23",
"angular2-in-memory-web-api": "0.0.20",
"bootstrap": "^3.3.6"
},
"devDependencies": {
"concurrently": "^2.0.0",
"lite-server": "^2.2.0"
}
}
由于 npm 官网镜像国内访问太慢,这里我使用了淘宝的 npm 镜像,安装方法如下:
$ npm install -g cnpm --registry=https://registry.npm.taobao.org
运行成功后我们就可以使用 cnpm 命令来安装模块:
cnpm install
运行成功后 angular-quickstart 目录下就会生成一个 node_modules 目录,这里包含了我们这个范例需要的模块
创建 Angular 组件
组件(Component)是构成 Angular 应用的基础和核心
一个组件包装了一个特定的功能,并且组件之间协同工作以组装成一个完整的应用程序
一般来说,一个组件就是一个用于控制视图模板的 JavaScript 类
现在,我们在 angular2-quickstart 目录下创建一个 app 的目录
$ mkdir app
$ cd app
然后添加组件文件 app.component.js , 复制以下内容
(function(app) {
app.AppComponent =
ng.core.Component({
selector: 'my-app',
template: '<h1>我的第一个 Angular 应用</h1>'
})
.Class({
constructor: function() {}
});
})(window.app || (window.app = {}));
上面的代码中,
我们通过链式调用全局 Angular core 命名空间 ng.core 中的 Component 和 Class 方法创建了一个名为 AppComponent 的可视化组件
Component 方法接受一个包含两个属性的配置对象,Class 方法是我们实现组件本身的地方
在 Class 方法中我们给组件添加属性和方法,它们会绑定到相应的视图和行为
Angular2 应用都是模块化的,ES5 没有内置的模块化系统
可以使用第三方模块系统,然后我们为应用创建独立的命名空间 app,文件代码可以包裹在 IIFE(立即执行函数表达式)中
(function(app) {
})(window.app || (window.app = {}));
我们将全局 app 命名空间对象传入 IIFE 中,如果不存在就用一个空对象初始化它
大部分应用文件通过在 app 命名空间上添加东西来导出
我们在 app.component.js 文件中导出了 AppComponent
app.AppComponent =
AppComponent 类只有一个空的构造函数
.Class({
constructor: function() {}
});
当要创建一个是有实际意义的应用时,可以使用属性和应用逻辑来扩展这个对象
ng.core.Component()告诉 Angular2 这个类定义对象是一个 Angular2 组件
传递给 ng.core.Component() 的配置对象有两个字段:selector 和 template
ng.core.Component({
selector: 'my-app',
template: '<h1>我的第一个 Angular2 应用</h1>'
})
selector 为一个宿主 html 元素定义了一个简单的 css 选择器 my-app
当 Angular 在宿主 HTML 中遇到一个 my-app 元素时它创建并显示一个 AppComponent 实例
template 属性容纳着组件的模板
Angular 应用由 Angular 模块组成
模块包含了 Angular 应用所需要的组件及其它任何东西
现在创建文件 app/app.module.js ,复制以下内容
(function(app) {
app.AppModule =
ng.core.NgModule({
imports: [ ng.platformBrowser.BrowserModule ],
declarations: [ app.AppComponent ],
bootstrap: [ app.AppComponent ]
})
.Class({
constructor: function() {}
});
})(window.app || (window.app = {}));
新建文件 app/main.js, 复制以下内容
(function(app) {
document.addEventListener('domContentLoaded', function() {
ng.platformBrowserDynamic
.platformBrowserDynamic()
.bootstrapModule(app.AppModule);
});
})(window.app || (window.app = {}));
我们需要两样东西来启动应用
Angular 的 platformBrowserDynamic().bootstrapModule 函数
上文中提到的应用根模块 AppModule
创建文件 index.html,复制以下内容
注意,这个文件在 app 目录之外,和 app 目录同级
<!DOCTYPE html>
<html>
<meta charset="utf-8">
<title>Angular 2 范例 - Angular教程</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
<!-- 1. 载入库 -->
<!-- IE 需要 polyfill -->
<script src="node_modules/core-js/client/shim.min.js"></script>
<script src="node_modules/zone.js/dist/zone.js"></script>
<script src="node_modules/reflect-metadata/Reflect.js"></script>
<script src="node_modules/rxjs/bundles/Rx.js"></script>
<script src="node_modules/@angular/core/bundles/core.umd.js"></script>
<script src="node_modules/@angular/common/bundles/common.umd.js"></script>
<script src="node_modules/@angular/compiler/bundles/compiler.umd.js"></script>
<script src="node_modules/@angular/platform-browser/bundles/platform-browser.umd.js"></script>
<script src="node_modules/@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js"></script>
<!-- 2. 载入 'modules' -->
<script src='app/app.component.js'></script>
<script src='app/app.module.js'></script>
<script src='app/main.js'></script>
<!-- 3. 显示应用 -->
<body>
<my-app>Loading...</my-app>
</body>
</html>
在这个 index.html 文件中
载入我们需要的 JavaScript 库
载入我们自己的 JavaScript 文件,注意顺序
添加 <my-app> 标签
执行过程为
当 Angular2 在 main.js 中调用 bootstrapModule 函数时,它读取 AppModule 的元数据,在启动组件中找到 AppComponent 并找到 my-app 选择器,定位到一个名字为 my-app 的元素,然后再这个标签之间的载入内容
新建一个文件 style.css,复制以下内容
h1 {
color: #369;
font-family: Arial, Helvetica, sans-serif;
font-size: 250%;
}
body {
margin: 2em;
}
打开终端,输入以下命令
$ npm start
这样我们的 Angular2 入门的应用算是构建完成了
需要使用下面的命令查看结果
$ npm install --registry=https://registry.npm.taobao.org
$ npm start