Angular2 Systemjs应用程序控制流程

时间:2016-12-05 18:38:08

标签: javascript angular typescript systemjs

我开始学习Angular2,发现很难找到应用程序流程。

systemjs.config.js

(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: 'dist',

      // 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',

      // other libraries
      'rxjs':                      'npm:rxjs',
      'angular-in-memory-web-api': 'npm:angular-in-memory-web-api/bundles/in-memory-web-api.umd.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'
      }
    }
  });
})(this);

的index.html

<!DOCTYPE html>
<html>
  <head>
    <title>Angular QuickStart</title>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" href="styles.css">

    <!-- Polyfill(s) for older browsers -->
    <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/systemjs/dist/system.src.js"></script>

    <script src="systemjs.config.js"></script>
    <script>
     System.import('app').catch(function(err){ alert(err); });
    </script>
  </head>

  <body>
    <my-app>APP WORKS</my-app>
  </body>
</html>

enter image description here 当我运行应用程序时,我看到输出为&#34; Hello Angular&#34;这是正确的,它正常工作。

我的问题是System.import('app')是如何运作的?我在任何目录中都没有任何文件夹或文件名应用程序。

此外,systemjs.config.js中的条目为"app: { main: './main.js'," systemjs.config.jsSystem.import('app')中的声明究竟是什么关系。如何控制应用流程?

如果我将System.import('app')更改为System.import('abc'),则会收到错误。

2 个答案:

答案 0 :(得分:0)

好问题;)

<script>
     System.import('app').catch(function(err){ alert(err); });
</script>

这行代码system.import加载应用程序的主文件, 实际上systemJs是一个模块加载器,它为您的应用程序加载模块。

systemjs.config.js是普通的javascript文件,我们在一个文件中编写了一堆简单的代码。在哪里告诉角度首先加载主文件。 喜欢这里

"app: { main: './main.js',....

  

如果我将System.import('app')更改为System.import('abc'),那么我收到错误。

是的,因为这里的app是一个文件变量,它绑定到main.js文件,我们引导整个应用程序加载,否则abc什么都没有,所以它会抛出错误。

希望明确一些观点。

答案 1 :(得分:0)

https://github.com/systemjs/systemjs/blob/master/docs/config-api.md#packages处的SystemJS文档中提取:

“包为设置特定于公共路径的元和地图配置提供了便利。”

鉴于您当前的配置,System.import('app')指示SystemJS加载'./main.js',这是'app'包中“main”属性下指定的入口点。

packages: {
  app: {
    main: './main.js',
    defaultExtension: 'js'
  },
  rxjs: {
    defaultExtension: 'js'
  }
}