字符串
作者:互联网
我们一般可以通过截取字符串的方式来得到我们要拿到的数据
截取字符串一般由两种方法
1.substr (start length )start 是开始的字符 length 是长度
2.substring (start end ) start 是开始的字符 end 是结束的字符
比如 string = (123456789)
string.substr(2,5) == (34567)
string.substring (2,5) == (345)
接口里面的时间为2021-01-30T 16:30:00 000Z 如何改成2021-01-30 16:30:00
dateFormat: function(time) { var date = new Date(time); var year = date.getFullYear(); var month = date.getMonth() + 1 < 10 ? "0" + (date.getMonth() + 1) : date.getMonth() + 1; var day = date.getDate() < 10 ? "0" + date.getDate() : date.getDate(); var hours = date.getHours() < 10 ? "0" + date.getHours() : date.getHours(); var minutes = date.getMinutes() < 10 ? "0" + date.getMinutes() : date.getMinutes(); var seconds = date.getSeconds() < 10 ? "0" + date.getSeconds() : date.getSeconds(); // 拼接 return year + "-" + month + "-" + day + " " + hours + ":" + minutes + ":" + seconds; },
<!-- 使用插槽来展示时间 -->
<el-table-column prop="createTime" label="创建时间" align="center">
<template slot-scope="scope">
<span>{{ dateFormat(scope.row.createTime) }}</span>
</template>
</el-table-column>
标签:getSeconds,getMinutes,start,var,date,字符串,10 来源: https://www.cnblogs.com/syhbk1225/p/15324565.html