path.resolve('a','b','c') 返回a/b/c path.resolve理论上总是以前一个路径作为基础路径,然后匹配当前路径,当前路径会有三种情况根目录(/),当前目录(./),上级目录(../)在进行匹配的时候,path.resolve会针对不同情况去处理不同的路径 比如 path.resolve('a/b/c','./d') 返回 a/b/c/d path.resolve('a/b/c','../d') 返回 a/b/d path.resolve('a/b/c','/d'…