未捕获错误:对象作为 React 子对象无效(发现:[object Promise])

发布于 2025-01-11 11:09:44 字数 1010 浏览 0 评论 0原文

未捕获错误:对象作为 React 子对象无效(发现:[object Promise])。

import React, { useState,useEffect } from 'react';
import './App.css';

async function Login() {
const [username,setUsername] = useState("")
const [password,setPassword] = useState("")


async function handleSubmit({event) {
event.preventDefault
 fetch("http://localhost:3001/api/login",{
  method:"post",
  headers:{
    "Content-Type" : "application/json"
  },
  body:JSON.stringify({username:username,password:password})
})
const data = await response.json()
console.log(data.username)

} 



  return (
    <div className="App">
      <form onSubmit={handleSubmit}>

        <input placeholder="username" value={username} onChange={ e => setUsername(e.target.value)} />
        <input placeholder="password " value={password} onChange={ e => setPassword(e.target.value)}/>
        <button  type='submit' >Submit</button>
      </form>
    </div>
  );
}

export default Login;

Uncaught Error: Objects are not valid as a React child (found: [object Promise]).

import React, { useState,useEffect } from 'react';
import './App.css';

async function Login() {
const [username,setUsername] = useState("")
const [password,setPassword] = useState("")


async function handleSubmit({event) {
event.preventDefault
 fetch("http://localhost:3001/api/login",{
  method:"post",
  headers:{
    "Content-Type" : "application/json"
  },
  body:JSON.stringify({username:username,password:password})
})
const data = await response.json()
console.log(data.username)

} 



  return (
    <div className="App">
      <form onSubmit={handleSubmit}>

        <input placeholder="username" value={username} onChange={ e => setUsername(e.target.value)} />
        <input placeholder="password " value={password} onChange={ e => setPassword(e.target.value)}/>
        <button  type='submit' >Submit</button>
      </form>
    </div>
  );
}

export default Login;

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

善良天后 2025-01-18 11:09:44

你忘记在调用方法之前放置等待

async function handleSubmit(event) {
event.preventDefault()
 let response = await fetch("http://localhost:3001/api/login",{
  method:"post",
  headers:{
    "Content-Type" : "application/json"
  },
  body:JSON.stringify({username:username,password:password})
})
const data = await response.data
console.log(data.username)

} 

you forgot put await before calling method

async function handleSubmit(event) {
event.preventDefault()
 let response = await fetch("http://localhost:3001/api/login",{
  method:"post",
  headers:{
    "Content-Type" : "application/json"
  },
  body:JSON.stringify({username:username,password:password})
})
const data = await response.data
console.log(data.username)

} 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文