我不想张贴一面文字,所以这里是该项目的github链接: https://github.com/Accurac/todoApp2018/tree/master/todoApp 编辑的唯一文件是App.js,app / components / Main.js和app / components / Note.js
我觉得主要原因是这一行:
let notes = this.state.noteArray.map((val, key) => {
return <Note key={key} keyval={key} val={val}
deleteMethod={() => this.deleteNote(key)} />
});
感谢您的帮助,我不知道问题是什么:/
答案 0 :(得分:1)
${props => (props.isHere ? `background:` + props.theme.colorGroupSelected : null)};
不是this.props.val.date
。您错过了this.prop.val.date
中的s
。