【发布时间】:2019-06-08 20:24:54
【问题描述】:
我正在构建一个音乐播放器应用程序,并且我有一个从处于组件状态的对象中获取值的函数。
当我将该值赋予函数时,它会打印 undefined 而不是值本身,因此该函数无法使用未定义的值。
这是我打印状态时 firstSong 组件的样子:
{
Title: "One Dance",
Artist: "Drake",
Length: "4:03",
Path:
"/home/songs/Drake - One Dance ft. EMØ.mp3"
}
这是完整的组件代码:
import React, { Component } from "react";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import {
faBackward,
faPlay,
faForward,
faStop
} from "@fortawesome/free-solid-svg-icons";
import styled from "styled-components";
import axios from "axios";
const CardStyling = styled.div`
.card-body {
width: 100%;
}
#song-header {
margin-bottom: 25px;
}
#artist {
margin-bottom: 25px;
}
#time {
margin-bottom: 25px;
}
`;
let display = "none";
const firstSongApi = "http://localhost:4001/getFirstSong";
const playSongApi = "http://localhost:4001/playSong";
export default class SongInfo extends Component {
constructor() {
super();
this.state = {
firstSong: this.getFirstSong(firstSongApi),
isPlaying: false
};
}
getFirstSong = async firstSongApi => {
const request = await axios({
method: "get",
url: firstSongApi,
headers: {}
});
try {
let firstSong = request.data.firstSong;
this.setState({
firstSong: firstSong
});
} catch (error) {
console.error(error);
}
};
playOrPauseSong = path => {
console.log(path);
};
render() {
{
this.playOrPauseSong(this.state.firstSong.path);
}
return (
<CardStyling className="card">
<div className="card-body">
<h3 id="song-header">{this.state.firstSong.Title}</h3>
<h5 id="artist">By: {this.state.firstSong.Artist}</h5>
<h5 id="Time">{this.state.firstSong.Length}</h5>
<button type="button" id="back-btn" className="btn">
<FontAwesomeIcon icon={faBackward} />
</button>
<button
type="button"
id="play-btn"
className="btn"
onClick={() => this.playOrPauseSong(this.state.songLocation)}
>
<FontAwesomeIcon icon={faPlay} />
</button>
<button
type="button"
id="stop-btn"
className="btn"
style={{ display: display }}
>
<FontAwesomeIcon icon={faStop} />
</button>
<button type="button" id="next-btn" className="btn">
<FontAwesomeIcon icon={faForward} />
</button>
</div>
</CardStyling>
);
}
}
我希望函数获取真正的路径值而不是未定义,提前谢谢!
【问题讨论】:
-
你能分享完整的组件吗
-
给我介绍一下 firstSong 在 state 中的样子,可能你没有在构造函数或任何地方创建 state,还显示调用 this.playOrPauseSong(song) 的函数
-
我已经发布了完整的组件代码,谢谢!
标签: javascript reactjs state