Posted in Javascript onDecember 09, 2014
方法说明:
提取出用 ‘/' 隔开的path的最后一部分。(8详见例子)
语法:
path.basename(p, [ext])
由于该方法属于path模块,使用前需要引入path模块(var path= require(“path”) )
接收参数:
p 要处理的path
ext 要过滤的字符
例子:
var path= require("path"); path.basename('/foo/bar/baz/asdf/quux.html') // returns 'quux.html' path.basename('/foo/bar/baz/asdf/quux.html', '.html') // returns 'quux' var a = path.basename('/foo/bar/baz/asdf/', '.html'); // returns 'asdf'
node.js中的path.basename方法使用说明
- Author -
junjie声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@