我有一个像55.5.555.555这样的本地服务器。首先,我使用React,我的代码
进行了登录WebUIclass Login extends Component {
constructor(props){
super(props)
this.state = {
un : "",
pwd : "",
};
}
render() {
return (
<div>
<input type="text" />
<input type= "password"/>
<button type='submit'>Submit</button>
</div>
);
}}
export default Login;
如何将我的用户名和密码发布到55.5.555.555,我尝试了3种方法,但从未成功,