gpt4 book ai didi

node.js - 'aws_amplify__WEBPACK_IMPORTED_MODULE_2___default.a.signUp 不是函数'

转载 作者:太空宇宙 更新时间:2023-11-03 23:56:27 25 4
gpt4 key购买 nike

我正在使用 React、node.js 和 AWS cognito 创建一个注册页面。处理注册事件时,我收到错误 'aws_amplify__WEBPACK_IMPORTED_MODULE_2___default.a.signUp is not a function'

import Auth from "aws-amplify";
handleConfirmationSubmit = async event => {
event.preventDefault();

this.setState({ isLoading: true });

try {
await Auth.confirmSignUp(this.state.email, this.state.confirmationCode);
await Auth.signIn(this.state.email, this.state.password);

this.props.userHasAuthenticated(true);
this.props.history.push("/");
} catch (e) {
alert(e.message);
this.setState({ isLoading: false });
}
}

关于如何解决此错误的想法?

最佳答案

我刚刚从 import API from "aws-amplify"; 更改为 import { API } from "aws-amplify";

关于node.js - 'aws_amplify__WEBPACK_IMPORTED_MODULE_2___default.a.signUp 不是函数',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56895155/

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