gpt4 book ai didi

javascript - 如何让我的列表组件在状态更改后呈现?

转载 作者:行者123 更新时间:2023-11-28 17:04:18 26 4
gpt4 key购买 nike

我有一个计算器应用程序,它可以通过 Firebase 实时记录任何用户处理的十个最新方程。每当有人从任何设备基本上点击等号时,它应该会自动更新日志。它在大多数情况下都会这样做,除了用户实际按下等于,在这种情况下,它会延迟一个等式。然而,该用户可以实时查看其他人提交的内容。

我的状态有两个不同的变量。一个称为日志,它是一个在本地保存数据库中所有日志的对象,另一个称为列表,它是一个通过处理日志的函数更新的数组,并按创建时间的顺序获取最近的十个条目。我有一个组件,它映射十个列表以在我的日志组件中创建 li 元素。

这是我的状态和 componentDidMount 方法:

this.state = {
// input builds a string of user inputs
input: '',
// display is for the calculator screen
display: '...',
// stores all logs from db
logs: {},
// Make a list for 10 recent posts
list: []
}
}

componentDidMount() {
this.fetchData();
document.addEventListener("keypress", this.handleKeyPress, true);
}

以下是适用于该问题的函数:

  // should fetch data (previous logs) for app on first render,
// and also update logs live from user and other users
fetchData = () => {
// creating reference to root node of firebase db
const rootRef = firebase.database().ref().child('/logs');
// on "change" in db, pull all logs
rootRef.on('value', snapshot => {
this.setState({
logs: snapshot.val()
});
return this.tenMostRecentLogs(this.state.logs)
}, function (errorObject) {
return console.log("The read failed: " + errorObject.code);
})
}

// take db object and update app state
tenMostRecentLogs = obj => {
// make array of all logs
const logs = [
Object.entries(obj)
];
// create array of all logs sorted by timestamp
const sortedLogs = logs[0].sort((a,b) => (a.timestamp < b.timestamp) ? 1 : -1)
// create an array of ten most recent posted logs
let tenLogsSorted = [];
for (let i=0;i<10;i++) {
let log = [];
log.push(sortedLogs[i][1].eq);
log.push(sortedLogs[i][1].id);
tenLogsSorted.push(log)
}
this.setState({
list: tenLogsSorted
})
}

这是有问题的组件:

<div className='log'>
<Log logs={this.state.list}/>
</div>

我曾考虑过强制重新渲染 Log,但我知道这是不受欢迎的。有人看出我哪里出错了吗?

有问题的应用程序:https://calculatron-app.herokuapp.com/

最佳答案

this.setState() 是一个异步操作。因此,在调用 this.tenMostRecentLogs(this.state.logs) 时,它无法在调用 this.setState({}) 后立即获取更新的 logs 值。要立即获取更新的状态,您需要使用 this.setState 的回调函数。

例如:this.setState({logs:value,},()=>{ this.tenMostRecentLogs(this.state.logs) })

此外,this.tenMostRecentLogs() 不会返回任何值,就像您编写的return this.tenMostRecentLogs(this.state.logs) 一样。

请记住,函数返回任何原始或非原始数据类型值。它可能是函数、对象、数组或数字、字符串等...

关于javascript - 如何让我的列表组件在状态更改后呈现?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56288219/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com