我刚开始实现Google Recaptcha v3,完全与文档中一样。
<script src='https://www.google.com/recaptcha/api.js?render=MY_API_KEY'></script>
<script>
grecaptcha.ready(function() {
grecaptcha.execute('MY_API_KEY', {action: 'homepage'})
.then(function(token) {
});
});
</script>
但我不断收到此错误;
Uncaught TypeError: performance.now is not a function
在https://www.gstatic.com/recaptcha/api2/v1541614764654/recaptcha__en.js中引发了错误,而在https://www.google.com/recaptcha/api.js中调用了该错误
不幸的是,在相同的情况下似乎没有任何答案。
答案 0 :(得分:0)
我找到了答案。
performance.now已添加到api.js文件中,并且在我的另一个脚本中,使用了一个名为Performance的变量。我更改了对该问题进行排序的变量的名称。
也许可以帮助别人!