zl程序教程

您现在的位置是:首页 >  后端

当前栏目

Nodejs file path to url path

Nodejs to File url path
2023-09-14 08:58:44 时间
import * as path from 'path';
import * as url from 'url';

const savePath = path.join('public', 'images', 'a.jpg'); 
// => \public\images\a.jpg

const urlPath = url.parse(savePath).path; 
// => /public/images/a.jpg