systemjs - 正在加载 jquery
systemjs - Loading jquery
谁能告诉我如何使用 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 文件加载到浏览器中?
此行为既正确又符合预期,因为 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;
});
谁能告诉我如何使用 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 文件加载到浏览器中?
此行为既正确又符合预期,因为 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;
});