我有一个导入图像文件的功能,我想将缩略图与原始文件关联起来。我需要_og在第一次出现句点之前插入。有人可以帮助我使用正则表达式或知道不同的方式吗?importAll(r) { let imageArray = r.keys(); // This removes the actual original file from the array // so it only includes the thumbnails since they are all in the same directory. imageArray = imageArray.filter(s => !s.includes('_og')); imageArray.forEach(key => ( this.images.push({ path: r(key), // thumbnail pathOriginal: r(key).replace(/./g , "_og."), // original }) ));}
1 回答
慕勒3428872
TA贡献1848条经验 获得超6个赞
.
是正则表达式中的一个特殊字符,表示匹配任何字符,因此您应该对其进行转义:
.replace(/\./g, "_og.")
顺便说一句,我很确定您正在寻找Object.keys(r)
而不是r.keys()
,并且r[key]
而不是r(key)
。
添加回答
举报
0/150
提交
取消