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.
我在 csv :2012-11-05T00:23:40.176-08:00 中具有这种格式。我正在将此数据加载到具有时间戳作为数据类型的表中。因此,它会引发错误。解决这个问题的正确策略是什么?
如果要从变量中提取日期
var a = "2012-11-05T00:23:40.176-08:00" var dateValue = a.split("T")[0];
如果要将时间戳字符串转换为时间戳数据类型,只需使用:
new Date("2012-11-05T00:23:40.176-08:00").getTime()