angular - 在调用 AppComponent.ts 之前 Angular 2 的起点是什么?

标签 angular typescript

我想在 Angular 2 应用程序的起点做一些事情,但我无法做到这一点。如果有人知道这一点,请帮助我。

提前致谢。

最佳答案

Index.html是开始,它是连续的main.ts然后它与 <my-app> 一起使用继续下去

在 Index.html 之后,systemjs.config.js已加载。这告诉运行哪个文件。而在 systemjs.config.js , 它告诉加载 main.ts开始。

packages tells the System loader how to load when no filename and/or no extension

经过一些研究,看下面systemjs.config.js文件。注释说明它做什么以及什么时候做。

/**
 * System configuration for Angular samples
 * Adjust as necessary for your application needs.
 */
(function (global) {
  System.config({
    paths: {
      // paths serve as alias
      'npm:': 'node_modules/'
    },
    // map tells the System loader where to look for things
    map: {
      // our app is within the app folder
      app: 'app',
      // angular bundles
      '@angular/core': 'npm:@angular/core/bundles/core.umd.js',
      '@angular/common': 'npm:@angular/common/bundles/common.umd.js',
      '@angular/compiler': 'npm:@angular/compiler/bundles/compiler.umd.js',
      '@angular/platform-browser': 'npm:@angular/platform-browser/bundles/platform-browser.umd.js',
      '@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js',
      '@angular/http': 'npm:@angular/http/bundles/http.umd.js',
      '@angular/router': 'npm:@angular/router/bundles/router.umd.js',
      '@angular/forms': 'npm:@angular/forms/bundles/forms.umd.js',
      '@angular/upgrade': 'npm:@angular/upgrade/bundles/upgrade.umd.js',
      // other libraries
      'rxjs':                      'npm:rxjs',
      'angular-in-memory-web-api': 'npm:angular-in-memory-web-api/bundles/in-memory-web-api.umd.js',
      //For android Internet
      'moment': 'npm:moment',
      'jquery':'npm:jquery/dist/jquery.js',
      'fullcalendar':'npm:fullcalendar/dist/fullcalendar.js'
    },
    // packages tells the System loader how to load when no filename and/or no extension
    packages: {
      app: {
        main: './main.js',
        defaultExtension: 'js'
      },
      rxjs: {
        defaultExtension: 'js'
      },
      moment: { main: './moment.js', defaultExtension: 'js' } 
    }
  });
})(this);

关于angular - 在调用 AppComponent.ts 之前 Angular 2 的起点是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42624654/

相关文章:

node.js - Angular2/NodeJS 项目结构和 CORS 问题

Angular - 在 ngFor 内的 ngIf 内带有参数的 ng-template

html - Angular 2 : how to clear the dropdown and textbox values while switching the radio buttons

Angular Material 菜单模块 : Export of name 'matMenu' not found

javascript - 按包括日期在内的多个属性对数组进行排序

angular - 如何使用 ControlValueAccessor Angular 在自定义输入中使用指令

javascript - 方法 some() 在 Angular 8 中无法按预期工作

任何值 ESLint 错误的 Typescript 不安全分配

angular - 测试 angular if else block 和 subscribe(response => {} block in jasmine

angular - 将事件处理程序添加到动态加载的组件