这里,filepath没有显示正确的输出,它正确地执行路径连接,但添加了不必要的制表符和换行符。
let folderPath = path.join(__dirname, topicName);
console.log(folderPath);
createDirectory(folderPath);
let filePath = path.join(folderPath, repoName + '.pdf');
console.log(filePath);
这里,filepath没有显示正确的输出,它正确地执行路径连接,但添加了不必要的制表符和换行符。
let folderPath = path.join(__dirname, topicName);
console.log(folderPath);
createDirectory(folderPath);
let filePath = path.join(folderPath, repoName + '.pdf');
console.log(filePath);
1条答案
按热度按时间pkbketx91#
这些字符必须在数据中,它们不是由
path.join()
. 它只添加了目录分隔符。你们之间有一条新的界线repoName
及.pdf
,这只是字符串连接,而不是path.join()
.使用
trim()
删除字符串周围多余的空白。