目标:输出与单词中字母数量相同的空白div。将两个对象数组相互比较,并在适当的位置显示常用字母。当另一个字母被添加到对象数组时,保留单词显示中所有前面的字母。
问题:将两个对象相互比较并仅显示常用字母。
word: [
{id: 0, val: "w"}
{id: 1, val: "o"}
{id: 2, val: "r"}
{id: 3, val: "d"}
{id: 4, val: "d"}
]
goodAttempts: [
{id: 3, val: "d"}
{id: 4, val: "d"}
]
下面是用于捕获按键并将其分配给状态的代码。goodAttempts 和 word 的状态(在别处捕获并分配)作为 props 传递给组件。
handleKeyDown = (event) => {
let match = [];
let repeat = false;
let letterIndex= [];
let correct = false;
// Validate if the key pressed is recurring in allAttempts
this.state.allAttempts.map((value, index) => {
if( this.state.allAttempts[index] === event.key ) {
return repeat = true;
}
})
// Validate if key pressed matches the word
this.state.word.map((value, index) => {
if( this.state.word[index].val === event.key ) {
letterIndex.push(index);
match.push(this.state.word[index]);
correct = true;
return
}
})
// if repeat is false set allAttempts and repeat. else set repeat to true
if( !repeat ) {
this.setState({
allAttempts: this.state.allAttempts.concat(event.key),
goodAttempts: this.state.goodAttempts.concat(match),
repeat: false,
letterIndex: this.state.letterIndex.concat(letterIndex),
});
} else {
this.setState({
repeat: true,
})
}
}
在猜到之前,我希望将这封信保留在页面之外,并希望避免直接从脚本中操作 HTML。
皈依舞
萧十郎
相关分类