gpt4 book ai didi

javascript - 如何向列表添加元素?

转载 作者:行者123 更新时间:2023-12-03 02:22:01 25 4
gpt4 key购买 nike

我可以将项目添加到我的列表中,但我的问题是我无法为每个添加的项目保留特定时间戳。基本上,如果我添加项目,我希望显示此内容:

05/03/2018 12:44:13 - item 3

05/03/2018 12:44:10 - item 2

05/03/2018 12:44:04 - item 1

但我的代码始终显示所有项目的相同时间戳。谁能告诉我我缺少什么吗?提前致谢!

这是我的代码:

PLUNKER

  <div *ngFor = "let alert of alertList">
{{currentTimeStamp +' - '+ alert }}
</div>

最佳答案

创建警报时,您应该将时间戳与消息一起存储在警报对象中。像这样:

  onSave(){
this.alertList.splice( 0 , 0 , {
'message': this.alertEntered,
'timestamp': (new Date(Date.now())).toLocaleString('en-GB', { hour12:false } ).replace(',','')
});
}

并像这样渲染它:

  <div *ngFor = "let alert of alertList">
{{ alert.timestamp +' - '+ alert.message }}
</div>

编辑:PLUNKER

关于javascript - 如何向列表添加元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49118328/

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