importpathfrom'path';constobj=path.parse('img/works.png');obj是undefined,官方说应该类似:{root:"/",dir:"/home/user/dir",base:"file.txt",ext:".txt",name:"file"}https://nodejs.org/api/path.html#path_path_parse_pathstring
2 回答
隔江千里
TA贡献1906条经验 获得超10个赞
应该是import*aspathfrom'path'constobj=path.parse('img/works.png');或者import{parse}from'path'constobj=parse('img/works.png');
添加回答
举报
0/150
提交
取消