У меня есть два сервера, один из которых - сервер Webpack для React (localhost:3000
), а другой - для сервера Express (localhost:4000
).Я прочитал, что мне нужно настроить прокси в моем файле package.json
.Хорошо, я сделал этоНо это все еще не работает.Я пытался установить заголовки на функцию fetch
.Все еще не работает.И никаких ошибок в консоли.
Вот мой код.
package.json
{
"name": "newsfeed",
"version": "0.1.0",
"private": true,
"proxy": "http://localhost:4000",
"dependencies": {
"npm-run-all": "^4.1.5",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-scripts": "2.1.1"
},
"scripts": {
"start": "react-scripts start",
"dev": "run-p server start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"server": "node server_demo/server.js"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}
src / index.js
import React from 'react';
import ReactDOM from 'react-dom';
import './style.css';
class NewsBlock extends React.Component {
constructor() {
super();
this.state = {
data: ''
}
}
componentDidMount() {
fetch('localhost:4000/',{
credentials: 'include',
headers: {
'Content-Type': 'application/json'
}
}).then(res => res.json()).then(data => this.setState({data}));
}
render() {
return <div>
{this.state.data}
</div>
}
}
ReactDOM.render(
<NewsBlock/>,
document.getElementById('root')
)
server_demo / server.js
const exp = require('express');
const app = exp();
app.listen(4000, () => console.log('Listening on 4000'));
app.use(exp.static('./'));
app.get('/', (req, res) => {
res.setHeader('Content-Type', 'application/json');
res.json({
"glossary": {
"title": "example glossary"
}
});
})