MERN运动APP
概括
该项目使用Mongoose,MongoDB,Express,Node,HTML,CSS,Bootstrap,React Router和React.js。 它使用户可以通过API或网站访问和保存运动日志。 可以在这里找到: :
报名表格
用户可以注册一个用户ID。
// this takes the username from this.state.userInput and builds a new user
//in the database
putUserToDb() {
var newUser = this.state.newUserInput;
console.log('calling axios.post from react');
console.log('adding new user to database');
axi
1