gpt4 book ai didi

javascript - 如何更改文件://to http://in angular/ionic when calling external scripts such as the disqus directive

转载 作者:行者123 更新时间:2023-11-28 05:39:26 28 4
gpt4 key购买 nike

我正在尝试集成 disqus 指令 - 可以找到 here

由于我的应用程序的设置方式,我遇到了一些问题。脚本中有一行嵌入的 .js 被这样调用

dsq.src = '//' + scope.config.disqus_shortname + '.disqus.com/embed.js';

这将在控制台中返回以下错误:

获取文件://mywebsitename.disqus.com/embed.js net::ERR_FILE_NOT_FOUND

发生这种情况是因为 url 返回为 file://,要修复它需要为 http://

我直接在代码行中更改了 url,它可以工作,但是脚本调用更多外部文件并将它们注入(inject)到 dom 中,这些文件也以 file://返回,因此我得到了相同的错误。

我确信这一切都与 angualr/ionic 中的位置模块有关,但不知道如何修改这些模块,因为我现在才使用这个 2 几个月。

提前致谢

最佳答案

为什么不从index.html调用它呢?这样它将成为 Ionic 应用程序的一部分,并更改它的路径,它应该加载它。

在index.html中

<script type="text/javascript" src="path/to/disqus.js"></script>

然后只需调用

disqus.src = "path/to/disqus.js";

关于javascript - 如何更改文件://to http://in angular/ionic when calling external scripts such as the disqus directive,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39047022/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com