我需要在JSFiddle中从Myjson加载一个json文件。我创建一个Myjson链接https://api.myjson.com/bins/34ds9
。我需要从该Json文件中读取数据。我是ReactJS中的新手。
答案 0 :(得分:1)
在componentDidMount()
上,您只需运行ajax调用即可获取该数据。
componentDidMount() {
$.ajax({
url: "https://api.myjson.com/bins/34ds9",
method: "GET"
}).done((data) => {
// Do whatever in here, set state, etc.
});
}