path.join()添加选项卡和换行符(node.js)

5m1hhzi4  于 2021-09-23  发布在  Java
关注(0)|答案(1)|浏览(337)

这里,filepath没有显示正确的输出,它正确地执行路径连接,但添加了不必要的制表符和换行符。

let folderPath = path.join(__dirname, topicName);
console.log(folderPath);
createDirectory(folderPath);
let filePath = path.join(folderPath, repoName + '.pdf');
console.log(filePath);
pkbketx9

pkbketx91#

这些字符必须在数据中,它们不是由 path.join() . 它只添加了目录分隔符。你们之间有一条新的界线 repoName.pdf ,这只是字符串连接,而不是 path.join() .
使用 trim() 删除字符串周围多余的空白。

let folderPath = path.join(__dirname, topicName);
console.log(folderPath);
createDirectory(folderPath);
let filePath = path.join(folderPath, repoName.trim() + '.pdf');
console.log(filePath);

相关问题