node.js中的path.join方法使用说明
方法说明:
将多个参数组合成一个path(详细请看例子)
语法:
path.join([path1],[path2],[...])
由于该方法属于path模块,使用前需要引入path模块(varpath=require(“path”))
例子:
path.join('/foo','bar','baz/asdf','quux','..')
//returns
'/foo/bar/baz/asdf'
path.join('foo',{},'bar')
//throwsexception
TypeError:Argumentstopath.joinmustbestrings
源码:
//windowsversion
exports.join=function(){
functionf(p){
if(!util.isString(p)){
thrownewTypeError('Argumentstopath.joinmustbestrings');
}
returnp;
}
varpaths=Array.prototype.filter.call(arguments,f);
varjoined=paths.join('\\');
//Makesurethatthejoinedpathdoesn'tstartwithtwoslashes,because
//normalize()willmistakeitforanUNCpaththen.
//
//Thisstepisskippedwhenitisveryclearthattheuseractually
//intendedtopointatanUNCpath.Thisisassumedwhenthefirst
//non-emptystringargumentsstartswithexactlytwoslashesfollowedby
//atleastonemorenon-slashcharacter.
//
//Notethatfornormalize()totreatapathasanUNCpathitneedsto
//haveatleast2components,sowedon'tfilterforthathere.
//ThismeansthattheusercanusejointoconstructUNCpathsfrom
//aservernameandasharename;forexample:
//path.join('//server','share')->'\\\\server\\share\')
if(!/^[\\\/]{2}[^\\\/]/.test(paths[0])){
joined=joined.replace(/^[\\\/]{2,}/,'\\');
}
returnexports.normalize(joined);
};
热门推荐
10 圣诞祝福语简短小学
11 祖国七十华诞简短祝福语
12 老师送的祝福语简短
13 生日祝福语大全女生简短
14 祝女性生日祝福语简短
15 牛年女神节祝福语简短
16 情人表白祝福语简短大气
17 老公开业祝福语简短
18 官宣新年祝福语简短