0

这是我的代码的相关部分(不包括导入等)

import Spotify from 'react-native-spotify';

let spotifyOptions = {
    "clientID": "69708bf2b35e4cc2b208fafa600ce9a9",
    "sessionUserDefaultsKey": "SpotifySession",
    "redirectURL": "MoodMixer://auth",
    "scopes": ["user-read-private", "playlist-read", "playlist-read-private", "streaming"],
};

export default class App extends React.Component {

    render() {

            Spotify.initialize(spotifyOptions, (loggedIn, error) => {
                if (error != null) {
                    Alert.alert("ERROR", error.message);
                }
            });

我运行它时不断收到此错误

世博会图像错误

4

1 回答 1

0

假设您使用的是这个版本,根据他们的自述文件,您将其导入错误。删除花括号,使其成为默认导入。您当前正在尝试导入一个不存在的命名导出。

import spotify from 'react-native-spotify';
于 2018-01-06T18:16:30.637 回答