gpt4 book ai didi

javascript - 在 ie9 中加载 Google+button 脚本时,RPC 消息来源无效

转载 作者:行者123 更新时间:2023-11-28 10:57:48 24 4
gpt4 key购买 nike

加载 Google Plus One 脚本时出现以下错误:

Invalid rpc message origin. https://apis.google.com vs http://10.0.1.59:3001 

我的代码:

load('//apis.google.com/js/plusone.js')

其中 load 是以下模块:

module.exports = function addScript(src) {
var script = document.createElement('script')
script.type = 'text/javascript'
script.src = src
document.body.appendChild(script);
return {
onLoad: function(fn) {
script.addEventListener('load', function() {
fn(null, script)
})
script.addEventListener('error', function() {
fn(new Error('Failed loading script: ' + src))
})
return script
},
script: script
}
}

如何避免出现此消息?

最佳答案

我在 FF 中遇到此错误并再次加载整个页面(ctrl+F5,我忘记了这个术语)解决了该错误。

关于javascript - 在 ie9 中加载 Google+button 脚本时,RPC 消息来源无效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16907121/

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