React Native中的Axios请求

时间:2019-03-03 14:46:58

标签: ajax reactjs react-native axios

我不明白那是什么错误。

这是我的组件:

import React, { Component } from 'react';
import { Text, View } from 'react-native';
import axios from 'axios';

class AlbumList extends Component {

 componentWillMount() {
 axios.get('https://rallycoding.herokuapp.com/api/music_albums')
 .then(response => console.log(response));
 }
 render() {
   return (
    <View>
     <Text>AlbumList!</Text>
    </View>
);
 }
}
 export default AlbumList;

这是我的错误:

enter image description here

@ deltaUrlToBlobUrl.js:29显示:

enter image description here

(索引):185显示(我添加了“;”但没有帮助):

enter image description here

1 个答案:

答案 0 :(得分:1)

尝试在componentDidMount()中调用您的api请求。您的API端点工作正常。这里附有您所需解决方案的屏幕截图。

enter image description here