本文介绍了Zone.assertZonePatched不是函数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我收到错误消息:
未处理的承诺拒绝:Zone.assertZonePatched不是函数
Unhandled Promise rejection: Zone.assertZonePatched is not a function
尽管我在index.html中正确导入了zonejs:
Although I am importing zonejs correctly in index.html:
<script src="https://unpkg.com/[email protected]/dist/zone.js"></script>
这是代码:
Plnkr: http://plnkr.co/edit/zZYOcgxcRINx23JhuxOk?p=预览
这是怎么了?
推荐答案
- RC7
<script src="https://unpkg.com/[email protected]/dist/zone.js"></script>
- Angular2.0版本
- Angular2.0 release
通过 [email protected] 更新 zone.js 软件包,
Update zone.js package by [email protected],
<script src="https://unpkg.com/[email protected]?main=browser"></script>
这篇关于Zone.assertZonePatched不是函数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!