由于该方法属于path模块,使用前需要引入path模块(var path= require(“path”) )
接收参数:
p 要处理的path
ext 要过滤的字符
例子:
path.basename('/foo/bar/baz/asdf/quux.html','.html')
// returns
'quux'
var a = path.basename('/foo/bar/baz/asdf/','.html');
// returns
'asdf'
原文链接:https://www.f2er.com/nodejs/57034.html