我在angular2中遇到Error: Permission denied to access property "then"
错误。
我在 tsconfig.json 文件中添加了“outDir”:“dist”,因为我想在更改之前将所有已编译的文件移到“dist”目录中它工作正常。
我在index.html文件中添加了以下代码
<!DOCTYPE html>
<html>
<head>
<title>:: XXXX ::</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- 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>
<base href="/alean/">
<script>
System.import('dist/app').catch(function(err){ console.error(err); });
</script>
</head>
<body>
<my-app>Loading AppComponent content here ...</my-app>
</body>
</html>