在javascript中转换没有前导零的数据字符串

时间:2018-09-28 20:38:21

标签: javascript json date d3.js

我在使用JavaScript将字符串解析为数据格式时遇到困难。问题是没有前导零。例如,在我的JSON中:

  • 1993年1月1日被列为:33970

我尝试过:

function dateMatch(data, value) {
  var formatTime = d3.timeFormat("%B %d, %Y");
  var d = formatTime(new Date(data.properties.Sign_Date.toString()));
  console.log(d)
}

没有运气!有人可以帮忙吗?

0 个答案:

没有答案