无法读取 angular.json 中作为脚本包含的文件



我正试图在我的Angular项目中包含Google Maps集群脚本。我已经尝试了所有常见的建议,例如向index.html添加<script>链接,但到目前为止,一切都不起作用。

当我尝试包含时,我收到了一条令人困惑的错误消息

https://unpkg.com/@googlemaps/markerclustererplus/dist/index.min.js

作为CCD_ 3文件中的脚本。根据错误输出,

发生未处理的异常:脚本文件https://unpkg.com/@googlemaps/markerclusterplus/dist/index.min.js不存在。

文件确实存在:可以单击链接来验证这一点。

根据我所读到的内容,angular.json中的scripts元素应该能够包含这样的外部脚本。这里可能出了什么问题?是否有需要更改的设置?

将其添加到index.html 中

<script src="https://unpkg.com/@googlemaps/markerclustererplus/dist/index.min.js"></script>

它会起作用的。

相关内容

  • 没有找到相关文章

最新更新