我制作了一个运动追踪器MERN堆栈应用程序,当我运行npm start时,它在我的本地计算机上都可以正常运行(它连接到服务器,可以添加用户,运动等) 但是当我将其部署到heroku时,我可以看到React前端,但无法创建用户,练习等 有人知道为什么吗? 我认为这可能是axios在我的组件之一中出现的问题,因为我使用的是localhost网址而不是heroku的网址。但是我不知道如何使用heroku之一。 这是我的创建用户组件:
import React, {Component} from 'react';
import axios from 'axios';
export default class CreateUser extends Component {
constructor(props) {
// need to call super() for constructors of subclass in javascript
super(props);
// ensure that "this" is referring to the right object
this.onChangeUsername = this.onChangeUsername.bind(this);
this.onSubmit = this.onSubmit.bind(this);
// use state to create variables in React
this.state = {
username: '',
}
}
onChangeUsername(e) {
this.setState({
username: e.target.value
})
}
onSubmit(e) {
//prevent default HTML behaviour
e.preventDefault();
const user = {
username: this.state.username,
}
console.log(user);
// connect backend to frontend
// second parameter of axios statement is the body
// 'user' is from users.js
axios.post('http://localhost:5000/users/add', user)
.then(res => console.log(res.data));
// once the user enters a username, make the username box blank again, staying on the same page
this.setState({
username: ''
})
}
render() {
return (
<div>
<h3>Create New User</h3>
<form onSubmit={this.onSubmit}>
<div className="form-group">
<label>Username: </label>
<input type="text"
required
className="form-control"
value={this.state.username}
onChange={this.onChangeUsername}
/>
</div>
<div className="form-group">
<input type="submit" value="Create User" className="btn btn-primary" />
</div>
</form>
</div>
)
}
}
这是我的server.js
// tools we need
const express = require('express');
const cors = require('cors');
// mongoose helps connect to mongodb database
const mongoose = require('mongoose');
// setting up server
const app = express();
const port = process.env.PORT || 5000;
const path = require("path")
// cors middeware
app.use(cors());
// helps to parse json
app.use(express.json());
const exercisesRouter = require('./routes/exercises');
const usersRouter = require('./routes/users');
// whenever go to that url, it will load everything in the second parameter
app.use('/exercises', exercisesRouter);
app.use('/users', usersRouter);
mongoose.connect(process.env.MONGODB_URI || "mongodb://***:***1@ds227525.mlab.com:27525/heroku_wgczpk05", {
//dealing with updates to mongodb
useNewUrlParser: true,
useCreateIndex: true,
useUnifiedTopology: true
}
);
if (process.env.NODE_ENV === 'production') {
app.use(express.static( 'client/build' ));
app.get('*', (req, res) => {
res.sendFile(path.resolve(__dirname, 'client', 'build', 'index.html')); // relative path
});
}
//app.use(express.static(path.join(__dirname, "client", "build")))
// starts listening and starts the server
app.listen(port, () => {
console.log(`Server is running on port: ${port}`);
});
请注意,为发布此帖子,我的mongodb uri的用户名和密码已加注星标。在我自己的文件中,有用户名和密码
答案 0 :(得分:0)
问题是,一旦将应用程序部署到Heroku
或任何其他平台上,就没有localhost
的概念。localhost
仅存在于您的本地环境中。因此,您axios应该向
axios.post('/users/add', user)
代替
axios.post('http://localhost:5000/users/add', user)
因为所有内容都在一个端口上运行,并且axios将自动将路由附加到URL。
我的意思是,如果您的heroku应用程序正在运行
scott.herokuapp.com
(示例),
调用该路由后,您的URL将为scott.herokuapp.com/users/add
。