路由存储了网站中所用到的所有路径。
获取路径
get
方法会传回一个 Stream,例如把该路径的资料存储到某个指定位置。
var data = hexo.route.get('index.html'); var dest = fs.createWriteStream('somewhere'); data.pipe(dest);
|
设置路径
您可以在 set
方法中使用字符串、Buffer 或函数,如下:
hexo.route.set('index.html', 'index') hexo.route.set('index.html', new Buffer('index')); hexo.route.set('index.html', function(){ return new Promise(function(resolve, reject){ resolve('index'); }); }); hexo.route.set('index.html', function(callback){ callback(null, 'index'); });
|
您还可以设置该路径是否更新,这样在生成文件时便能忽略未更动的文件,加快生成时间。
hexo.route.set('index.html', { data: 'index', modified: false });
|
移除路径
hexo.route.remove('index.html');
|
获得路由表
格式化路径
format
方法可将字符串转为合法的路径。
hexo.route.format('archives/');
|