我是一个初学者,需要与之打交道,这将是一个非常基本的问题。 我正在创建一个带有节点后端的基本反应。我设置mysql数据库连接并全部设置。我想使用/ createUser api调用插入用户详细信息,以将数据存储到数据库。 我运行server / app.js,react serve和index.js,其中包含我的/ createUser侦听器。 当我使用表单输入用户名,密码时,在期望输入的用户名和密码的同时,express.post方法中将返回空的req.body对象。 在其他情况下,当我启动侦听器时,由于下面的错误而未加载响应前端。
获取http://localhost:3000/%PUBLIC_URL%/manifest.json 404(未找到) manifest.json:1清单:第1行,第1列,1个意外令牌。
似乎节点组件无法访问我的清单文件。我说得对吗?
index.js
const express = require('express');
const bodyParser = require('body-parser');
const store = require('./store');
const app = express();
app.use(express.static('public'));
app.use(bodyParser.urlencoded({ extended: true }));
app.use(bodyParser.json({ type: 'application/*+json' }));
app.use(bodyParser.json());
app.post('/createUser', (req, res) => {
console.log(req.body);
store
.createUser({
username: req.body.username,
password: req.body.password
})
.then(() => res.sendStatus(200))
})
app.listen(3001, () => {
console.log('Server running on http://localhost:3001')
})
login.js
import React, { Component } from 'react';
import classes from './Login.css';
function post (path, data) {
console.log(data);
return window.fetch(path, {
method: 'POST',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json'
},
body: JSON.stringify(data)
})
}
function handleLoginClick(e) {
e.preventDefault();
console.log('The link was clicked.');
const Login = document.querySelector('.Login');
const username = Login.querySelector('.username').value;
const password = Login.querySelector('.password').value;
post('/login', { username, password })
.then(({ status }) => {
if (status === 200) alert('login success')
else alert('login failed')
})
}
function handleSignupClick(e) {
e.preventDefault();
console.log('The link was clicked sign up.');
const CreateUser = document.querySelector('.CreateUser')
const username = CreateUser.querySelector('.username').value;
const password = CreateUser.querySelector('.password').value;
post('/createUser', { username, password })
}
class Login extends Component {
componentDidMount() {
}
componentWillUnmount() {
}
render() {
return (
<div>
<form className="Login">
<h1>Login</h1>
<input type="text" className="username" placeholder="username"/>
<input type="password" className="password" placeholder="password"/>
<input type="submit" value="Login" onClick={handleLoginClick}/>
</form>
<form className="CreateUser">
<h1>Create account</h1>
<input type="text" className="username" placeholder="username"/>
<input type="password" className="password" placeholder="password"/>
<input type="submit" value="Create" onClick={handleSignupClick}/>
</form>
</div>
);
}
}
export default Login;
我的代码有什么问题?有人可以解释一下吗。
答案 0 :(得分:1)
尝试将bodyParser配置替换为以下代码行:
dependencies {
implementation(platform("org.springframework.boot:spring-boot-dependencies:${extra["springBootVersion"]}"))
…
}
这可能对您有帮助
答案 1 :(得分:0)
解决了[https://github.com/expressjs/express/issues/3881][1]
这里有两种解决方案:
http://localhost:3001/manifest.json
以匹配您设置express.static
的方式。express.static
更改为app.use('/public', express.static('public'));
,以使http://localhost:3001/public/manifest.json
引用给定的文件。