加载 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
}
}
如何避免此消息?