我在中国,我的项目是德语。当我开发时,我希望使用:http://ditu.google.cn/maps
对于我的本地开发,然后是德语,它可以切换到http://maps.googleapi.com/maps
所以我把我的require.config.js改为:
require.config({
// List of all the dependencies
paths: {
google: [
'//maps.googleapis.com/maps/api/js?v=3.exp&sensor=false',
'//ditu.google.cn/maps/api/js?v=3.exp&sensor=false'
]
}
})
当第一个链接超时时,它将尝试第二个链接。但是当我运行我的项目时,我收到了这个错误:
无法执行'写' on' Document':除非明确打开,否则无法从异步加载的外部脚本写入文档。
我该如何解决这个问题?