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);
};
热门推荐
2 红丝绒戚风蛋糕
3 夹心小甜点
4 南瓜甜点
6 粘米粉蒸蛋糕
7 酸奶华夫饼
9 红柚鸡蛋糕
10 葡萄干蛋糕
11 紫薯蛋糕卷
13 纸杯裱花小蛋糕
14 果酱奶酪蛋糕
15 日式樱花蔓越莓大福
16 草莓蛋糕卷
17 卡仕达长崎杯子蛋糕