我正在构建一个音乐播放器应用程序,我有一个函数从组件状态的对象中获取一个值。
当我将该值赋予函数时,它会打印 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"
我希望该函数能够获取真实的路径值而不是未定义的,提前谢谢!
芜湖不芜
摇曳的蔷薇
相关分类