MMMHUHU
path.resolve怎么用的方法说明:将参数 to 位置的字符解析到一个绝对路径里。语法:path.resolve([from ...], to)由于该方法属于path模块,使用前需要引入path模块(var path= require(“path”) )接收参数:from 源路径to 将被解析到绝对路径的字符串另一种方法是把它作为一个序列的cd命令shell。代码如下:path.resolve('foo/bar', '/tmp/file/', '..', 'a/../subfile')