- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在构建一个音乐播放器应用程序,并且我有一个函数可以从组件状态下的对象中获取值。
当我将该值赋予函数时,它会打印未定义的值,而不是该值本身,因此该函数无法使用未定义的值。
这就是我打印状态时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>
);
}
}
我希望该函数能够获取真实的路径值而不是未定义的,提前谢谢您!
最佳答案
确保您的状态如下所示,并且路径将正确记录在 playOrPauseSong 内;
this.state = {
firstSong: {
title: "One Dance",
artist: "Drake",
length: "4:03",
path:
"/home/songs/Drake - One Dance ft. EMØ.mp3"
}
}
playOrPauseSong = path => {
console.log(path)
}
render(){
return(
<div>
{this.playOrPauseSong(this.state.firstSong.path)}
</div>
)
}
关于javascript - React 状态值未定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56509880/
我有一个帮助程序类,它提供有关登录用户的信息。我想将它作为静态方法并在多个地方使用它(不是 react 组件) 如何访问类模型中的 redux 存储值? 最佳答案 如果您可以在应用程序中管理它,那么使
我正在构建一个简单的 rgba 选择器,它允许用户通过向上箭头和向下箭头键切换各个值。下面是我的代码片段。 class App extends Component { constructor(){
想象一下这段代码: class App extends React.Component { state = { name: "george", counter: 1 };
我正在使用 PHP SDK getLoginUrl() 函数,它可以完美地让用户登录。一旦用户被重定向回我的页面,URL 可以有两种形式,请参见以下链接第 3 小节:http://developers
我正在尝试对我的 ReactJS 组件进行单元测试。基本上它是一个由输入和按钮组成的简单组件。单击按钮时,它会触发一个名为“onSave”的事件,并且仅当 state.textValue 不为空时才会
我试图通过将成员变量保存在 ViewState 中(只有几个小变量)来保留它们,但是我读了一下,我发现在 PreRender 阶段将它们保存到 ViewState 中比 PageLoad 更好? 我可
我正在尝试根据用户的输入更改 div 背景颜色。我想将状态键设置为色调,值为用户输入。然后我想获取该状态并将其注入(inject)另一个名为颜色值的状态键。我希望颜色值是在 chromajs 中使用
研究应该是对数据库的简单调用。选择与当前用户对应的记录,然后根据检索到的数据执行一些代码。但是,当它尝试查询数据库时,它返回“数据转换失败。[ OLE DB 状态值(如果已知)= 2 ]”。有什么想法
我正在运行以下代码 /*Fetchinch Last CustID from custMaster*/ int ID = 0; try { con.Open(); da = new
我是一名优秀的程序员,十分优秀!