Herbertzz / picgo-plugin-minio

MIT License
56 stars 13 forks source link

自动归档日期目录格式问题 #8

Closed Ximeng0918 closed 2 years ago

Ximeng0918 commented 2 years ago
// 生成日期路径
genDatePath (isAutoArchive) {
  if (!isAutoArchive) return ''

  return (new Date()).toLocaleDateString() + '/'
},

看源码中生成日期路径的方法 toLocaleDateString()不同设备貌似有差异
谷歌浏览器 显示 2022/5/22 而我上传路径显示2022-5-22

Ximeng0918 commented 2 years ago
  // 生成日期路径
  genDatePath (isAutoArchive) {
    if (!isAutoArchive) return ''

    // return (new Date()).toLocaleDateString() + '/'
    const date = new Date()
    return `${date.getFullYear()}/${(date.getMonth() + 1).toString().padStart(2, '0')}/${date.getDate().toString().padStart(2, '0')}/`
  },

改成这样了 不知有没有更好的方法

Herbertzz commented 2 years ago

采用,感谢