12

我正在尝试区分两条路径。我有一个解决方案,但我对此并不满意,即使它有效。有没有更好/更简单的方法来做到这一点?

var firstPath =  '/my/first/path'
  , secondPath = '/my/first/path/but/longer'

// what I want to get is: '/but/longer'

// my code:
var firstPathDeconstruct = firstPath.split(path.sep)
  , secondPathDeconstruct = secondPath.split(path.sep)
  , diff = []

secondPathDeconstruct.forEach(function(chunk) {
  if (firstPathDeconstruct.indexOf(chunk) < 0) {
    diff.push(chunk)
  }
})

console.log(diff)
// output ['but', 'longer']
4

2 回答 2

27

Node 提供了一个标准函数 ,path.relative它正是这样做的,并且还处理您可能遇到的所有各种相对路径边缘情况:

来自在线文档

path.relative(from, to)

求解从from到的相对路径to

例子:

path.relative('C:\\orandea\\test\\aaa', 'C:\\orandea\\impl\\bbb')
// returns
'..\\..\\impl\\bbb'

path.relative('/data/orandea/test/aaa', '/data/orandea/impl/bbb')
// returns
'../../impl/bbb'
于 2013-01-18T00:11:06.717 回答
-1

这可能有效。尽管它依赖于这样一个事实,即它知道它们中的哪一个是另一个的子集,并假设大小写相同。

var diff = secondPath.substring(firstPath.length);
于 2013-01-18T00:04:04.890 回答