编程语言
首页 > 编程语言> > php 后台传回前端日期字符串抓换成时间对象

php 后台传回前端日期字符串抓换成时间对象

作者:互联网

老的js 页面                      $.post('{:U("getNowTimeFormat")}', function(data){                         let json = JSON.parse(data);                          let s = json.formatDate;                         s = s.replace(/-/g,"/");                         let date = new Date(s).getTime();                     });   新的页面可以直接干                     axios.get("{:U('getNowTimeFormat')}")                         .then(response => {                             let nowTime = new Date(response.data.formatDate).getTime()                         })

标签:getTime,data,json,let,getNowTimeFormat,formatDate,字符串,php,传回
来源: https://www.cnblogs.com/quepq/p/15156021.html