Stack Overflow на русском Asked on November 10, 2021
Не получается прочитать данные из json
файла и вывести в консоль.
Что я делаю не так?
import React from "react";
class App extends React.Component {
componentDidMount() {
fetch("http://stepan-ivanov93.myjino.ru/test/anothercust.json")
.then(res => res.json())
.then(data => {
console.log("data:", data);
});
}
render() {
return <div>Test</div>;
}
}
export default App;
Скорее всего Ваша проблема на стороне сервера, все работает если воспользоваться тестовым сервисом JSON placeholder:
class App extends React.Component {
componentDidMount() {
fetch("https://jsonplaceholder.typicode.com/todos/1")
.then(res => res.json())
.then(data => {
console.log("data:", data)
})
}
render() {
return <h1>Test title</h1>
}
}
ReactDOM.render(
<App />,
document.getElementById("react")
)
<div id="react"></div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/16.6.3/umd/react.production.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react-dom/16.6.3/umd/react-dom.production.min.js"></script>
Answered by Vasily on November 10, 2021
Get help from others!
Recent Questions
Recent Answers
© 2024 TransWikia.com. All rights reserved. Sites we Love: PCI Database, UKBizDB, Menu Kuliner, Sharing RPP