在加载Angular2应用程序(不加载它)之前,我需要重定向到登录页面。 我的项目基于angular2-quicksart
当我在uglifyjs
之后加载angular2 js文件时<script>
var cookie = $.cookie(COOKIE_NAME);
if (cookie == undefined){
window.location.href = LOGIN_SERVER_URL
} else {
var head = document.getElementsByTagName('head')[0];
var script = document.createElement('script');
script.src = "build/app/bundle.min.js";
head.appendChild(script);
head.innerHTML += ("<script>System.import('app').catch(function(err){ console.error(err); }); <\/script>");
}
</script>
此解决方案有效。 JS已加载并且应用程序正在运行。
当我使用systemjs文件加载Angular应用程序时,加载了systemjs.config.js,但app没有运行。
`script.src =“systemjs.config.js”;
我可以动态加载systemjs吗?
答案 0 :(得分:0)
这是你应该如何加载System JS ..
https://github.com/angular/quickstart/blob/master/src/index.html
这取自Angular Quickstart项目。
我为上下文提供了整个index.html:
!DOCTYPE html>
<html>
<head>
<title>Angular QuickStart</title>
<base href="/">
<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/systemjs/dist/system.src.js"></script>
<script src="systemjs.config.js"></script>
<script>
System.import('main.js').catch(function(err){ console.error(err); });
</script>
</head>
<body>
<my-app>Loading AppComponent content here ...</my-app>
</body>
</html>
SystemJS是预先加载的,而不是动态加载的。 System JS的工作是一个动态模块加载器,但由于在加载System JS之前你没有模块加载器,所以你无法动态加载System JS。