您在componentDidMount中添加了axios,这是错误的,提交表单时应进行POST。componentDidMount将在每次渲染后调用,这是一个生命周期方法。请仔细阅读react文档以获得更好的解释。请尝试在单击提交按钮(即“推断”按钮)时调用此代码POST API import React from 'react'import axios from 'axios'export default class Inference extends React.Component { constructor(props) { super(props); this.state = { model: "", options: [ { label: "Cat", value: "cat" }, { label: "Traffic", value: "traffic" }, { label: "Dog", value: "dog" }, ], }; this.handleChange = this.handleChange.bind(this); } handleChange(e) { this.setState({ model: e.target.value }); console.log("Model Selected!!"); } handleSubmit(event) { e