TypeError: Recaptcha is not a constructor

TypeError: Recaptcha is not a constructor

我的应用程序突然停止编译,因为这个类型错误:Recaptcha 不是构造函数。

    recaptchaConfig() {
        this.recaptcha = new Recaptcha(
            config.service.recaptcha.client_key,
            config.service.recaptcha.secret_key , 
            {...config.service.recaptcha.options}
        );
    }

它工作得很好,现在我不知道是什么原因造成的。 https://github.com/arya107/AskArya-Node.js-Vue.js/blob/master/Server/app/http/controllers/controller.js

刚刚尝试了您的代码并使用了:

var Recaptcha = require('express-recaptcha').Recaptcha;

得到 sam 异常,但如果您尝试:

var Recaptcha = require('express-recaptcha').RecaptchaV3;

有效,试试吧。