React Native中的Axios请求

I cant understand what mean that errors.

This is my component:

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;

This is my Errors:

enter image description here

@ deltaUrlToBlobUrl.js:29 Show:

enter image description here

(index):185 show (I added ";" but dont help) :

enter image description here

Try to call your api request in componentDidMount(). Your API endpoint working fine. here attached the screen shot of your desired solution.

enter image description here