用vue3开发了一个项目,只能部署在根目录,不能加二级目录,后来网上找了解决方案,在vite.config.ts中增加base: './',配置解决问题,参考下图:
但部署后要获取部署的二级目录地址切遇到问题,后来想了个笨办法,vue是单页面项目,可以通过"index.html"截取,参考代码如下:
var tempIndex = window.location.pathname.lastIndexOf("index.html");
var econdaryDirectory = ""; //部署的二级目录
if(tempIndex>0){econdaryDirectory = window.location.pathname.slice(0, tempIndex);
}