在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
描述在上一章中,我们研究了如何为Angular 2设置开发环境。在本章中,我们创建一个示例来显示 Hello World 文本。 例子下面的例子描述了如何在Angular 2中显示一个简单的文本: <!DOCTYPE html> <html> <head> <title>Hello World</title> <script src="https://atts.ogeek.cn/attachments/tuploads/angular2/es6-shim.min.js"></script> <script src="https://atts.ogeek.cn/attachments/tuploads/angular2/system-polyfills.js"></script> <script src="https://atts.ogeek.cn/attachments/tuploads/angular2/angular2-polyfills.js"></script> <script src="https://atts.ogeek.cn/attachments/tuploads/angular2/system.js"></script> <script src="https://atts.ogeek.cn/attachments/tuploads/angular2/typescript.js"></script> <script src="https://atts.ogeek.cn/attachments/tuploads/angular2/Rx.js"></script> <script src="https://atts.ogeek.cn/attachments/tuploads/angular2/angular2.dev.js"></script> <script> System.config({ transpiler: 'typescript', typescriptOptions: { emitDecoratorMetadata: true }, packages: {'app': {defaultExtension: 'ts'}} }); System.import('/angular2/src/app/hello_world_main') .then(null, console.error.bind(console)); </script> </head> <body> <my-app>Loading...</my-app> </body> </html> 上述代码包括以下配置选项:
要运行代码,您需要在 app 文件夹下保存以下 TypeScript(.ts)文件。 hello_world_main.tsimport {bootstrap} from "angular2/platform/browser" import {MyHelloWorldClass} from "./hello_world_app.component" bootstrap(MyHelloWorldClass); 现在我们将在TypeScript(.ts)文件中创建一个组件,如下所示: hello_world_app.component.tsimport {Component, View} from "angular2/core"; @Component({ selector: 'my-app' }) @View({ template: '<h2>Hello World !!</h2>' }) export class MyHelloWorldClass { }
输出让我们执行以下步骤,看看上面的代码如何工作:
或者,您可以以其他方式运行此文件:
|
请发表评论