Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 Angular 4 日期管道来格式化日期。对于 he-IL(希伯来语)语言环境,我将数据格式视为 dd.mm.yyyy 而不是 dd/mm/yyyy
不知道为什么会出现这种差异?
我建议toLocaleDateString()在您的情况下使用:
toLocaleDateString()
var date = new Date().toLocaleDateString('he-IL'); console.log(date); date = date.replace(/\./g, '/'); console.log(date);