JSRUN 用代码说话

组件

编辑教程

组件

描述

组件是具有模板的控制器类,主要处理页面上的应用程序和逻辑的视图。 它是一个可以在整个应用程序中使用的位代码。 组件能自动配置和依赖注入。

组件包含两个重要的事情: 一个是视图,另一个是一些逻辑。

例子

下面的例子描述了在Angular 2中使用组件:

<!DOCTYPE html>
<html>
   <head>
      <title>Angular 2 Component</title>
      <!--Load libraries -->
      <script src="https://atts.123.com/attachments/tuploads/angular2/es6-shim.min.js"></script>
      <script src="https://atts.123.com/attachments/tuploads/angular2/system-polyfills.js"></script>
      <script src="https://atts.123.com/attachments/tuploads/angular2/angular2-polyfills.js"></script>
      <script src="https://atts.123.com/attachments/tuploads/angular2/system.js"></script>
      <script src="https://atts.123.com/attachments/tuploads/angular2/typescript.js"></script>
      <script src="https://atts.123.com/attachments/tuploads/angular2/Rx.js"></script>
      <script src="https://atts.123.com/attachments/tuploads/angular2/angular2.dev.js"></script>
      <script>
         System.config({
            //transpiler工具将TypeScript转换为JavaScript
            transpiler: 'typescript',

            //JavaScript输出用于从装饰器创建元数据的emitDecoratorMetadata标志
            typescriptOptions: { emitDecoratorMetadata: true },
            packages: {'app': {defaultExtension: 'ts'}}
         });
         System.import('/angular2/src/app/component_main')
            .then(null, console.error.bind(console));
      </script>
   </head>
   <!--Angular在中调用引导函数时主.ts,它读取组件元数据,找到“app”选择器,找到名为app的元素标记,并在这些标记之间加载应用程序。-->
   <body>
      <app>Loading...</app>
   </body>
</html>

上述代码包括以下配置选项:

您可以使用 typescript 版本配置 index.html 文件。 在使用 transpiler 选项运行应用程序之前,SystemJS将TypeScript转换为JavaScript。

如果在运行应用程序之前没有翻译到JavaScript,您可能会看到浏览器中隐藏的编译器警告和错误。

当设置了 emitDecoratorMetadata 选项时,TypeScript会为代码的每个类生成元数据。 如果不指定此选项,将生成大量未使用的元数据,这会影响文件大小和对应用程序运行时的影响。

Angular 2包含来自 app 文件夹的包,其中文件将具有 .ts 扩展名。

接下来,它将从 app 文件夹加载主组件文件。 如果没有找到主要组件文件,那么它将在控制台中显示错误。

当Angular调用main.ts中的引导函数时,它读取Component元数据,找到“app"选择器,定位一个名为app的元素标签,并在这些标签之间加载应用程序。

要运行代码,您需要在 app 文件夹下需要保存以下 TypeScript(.ts)文件。

component_main.ts
import {bootstrap} from "angular2/platform/browser";  //importing bootstrap function
import {App} from "./component_app.component"         //importing component function

bootstrap(App);

现在我们将在TypeScript(.ts)文件中创建一个组件,我们将为该组件创建组件和视图。

component_app.component.ts
// 组件的元数据可以使用这个主角度库访问
import {Component, View} from "angular2/core";

//framework识别@Component注释并知道我们正在尝试创建一个新的组件
@Component({
   selector: 'app'  //指定名为“app”的HTML元素的选择器
})

@View({
  //template属性保存组件的配套模板,该模板告诉Angular如何渲染视图
  template: '<h2>Welcome to {{name}}</h2>'
})

export class App {
   name : 'Tutorialspoint!!!'
}

输出

当运行上面的代码时,它将显示在component_app.component.ts文件中定义的模板选项中指定的文本,并保存告诉Angular如何渲染视图的组件的伴随模板。

让我们执行以下步骤,看看上面的代码如何工作:

将上述HTML代码另存为 index.html 文件,如同我们在开发环境一章中创建的一样,并使用上述 app i>文件夹,其中包含 .ts 文件。

打开终端窗口并输入以下命令:

npm start

稍后,浏览器选项卡应打开并显示输出

或者,您可以以其他方式运行此文件:

将上面的HTML代码另存为服务器根文件夹中的 angular2_components.html 文件。

将此HTML文件打开为http://localhost/angular2_components.html,并输出。

JSRUN闪电教程系统是国内最先开创的教程维护系统, 所有工程师都可以参与共同维护的闪电教程,让知识的积累变得统一完整、自成体系。 大家可以一起参与进共编,让零散的知识点帮助更多的人。
X
支付宝
9.99
无法付款,请点击这里
金额: 0
备注:
转账时请填写正确的金额和备注信息,到账由人工处理,可能需要较长时间
如有疑问请联系QQ:565830900
正在生成二维码, 此过程可能需要15秒钟