systemjs - 加载jquery

时间:2016-11-21 07:40:30

标签: javascript jquery systemjs

有人可以告诉我如何使用SystemJS将简单的javascript文件加载到浏览器中。

我正在尝试使用以下语法从我的node_modules文件夹加载jquery:

packages: {
      app: {
        main: './js/main.js',
        defaultExtension: 'js'
      },
      rxjs: {
        defaultExtension: 'js'
      },
        'jquery': {
        main: 'node_modules/jquery/dist/jquery.min.js'
    }
    }

但每当我在浏览器中写下以下行时

$(document).ready(function(){alert("Hello");});

我的整个SystemJS配置是 - :

/**
 * 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
      'jquery':                    'npm:jquery/dist/jquery.min.js',      
      '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: './js/main.js',
        defaultExtension: 'js'
      },
      rxjs: {
        defaultExtension: 'js'
      }
    }
  });
})(this);

我收到一个错误,即未定义$。

如何使用SystemJS将简单的.js文件加载到浏览器中?

1 个答案:

答案 0 :(得分:1)

这种行为既正确又预期,因为jQuery是一个写得很好,环境友好的库,如果有合适的加载器,它不会无条件地将自己注入到浏览器中的全局命名空间window中。 SystemJS检测到jQuery是一个AMD模块,并提供正确的包装器,使其能够使用AMD define api正确注册。

这意味着您需要导入它才能使用它。

以下代码适用于TypeScript和Babel

import $ from 'jquery';

$(document).ready(() => {
  alert("Hello");
});

如果要在浏览器控制台中访问jquery。您可以执行以下操作

// In your browser tools console
SystemJS.import('jquery').then(({default}) => { 
  window.$ = default;
});