云开发上传文件路径问题?
const cloudPath = 'my-image' + filePath.match(/\.[^.]+?$/)[0]
以上我没明白为什么要这样写?
const cloudPath = 'my-image.png'
也可以呀?为什么要 + filePath.match(/\.[^.]+?$/)[0]
const cloudPath = 'my-image' + filePath.match(/\.[^.]+?$/)[0]
以上我没明白为什么要这样写?
const cloudPath = 'my-image.png'
也可以呀?为什么要 + filePath.match(/\.[^.]+?$/)[0]