获取http:// localhost:4200 / node_modules / zone.js / dist / zone.js 404(未找到)

时间:2017-01-17 15:32:53

标签: angular

我收到错误说:

GET http://localhost:4200/node_modules/zone.js/dist/zone.js 404 (Not Found)
ng_zone.js:92Uncaught (in promise) Error: Angular requires Zone.js prolyfill.
    at new NgZone (ng_zone.js:92)
    at PlatformRef_._bootstrapModuleFactoryWithZone (application_ref.js:335)
    at application_ref.js:389
NgZone @ ng_zone.js:92
PlatformRef_._bootstrapModuleFactoryWithZone @ application_ref.js:335
(anonymous) @ application_ref.js:389

我已在 index.html 文件中定义了zone.js:

<!DOCTYPE html>
<html>
<head>
    <title>Drew's Demo Site</title>

    <base href="/">

    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
    <link rel="stylesheet" href="src/styles.css">
    <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>


    <!-- Polyfill(s) for older browsers -->

</head>

<body>

    <my-app>Loading... </my-app>

</body>

</html>

我确定发生了什么事。我的IDE填写测试,因为我打字让我认为路径是正确的,我仔细检查,但它仍然给出了404.我想知道是否有更深层次的问题。

任何建议都将受到赞赏。

GitHib链接:注意如果您拉动项目,请将目录资产添加到 src / assets

GitHub Link

1 个答案:

答案 0 :(得分:1)

使用修复程序为您的github创建了一个pull请求。它可能不是一个正确的修复,而是一个有效的修复:)

https://github.com/drewjocham/AngularIssue/pull/1

我所做的改变主要是将zone.js导入到angular-cli.json文件。