标签: html angular routing href
如果我向Angular 7应用添加类似的基本href,则无法加载该网站。
<base href="/app/">
存在错误,这是必需的来源(脚本,样式等)。它会自动添加一个斜杠,以使文件无法加载。
GET https://localhost:23000/app/main.js/ 404 (Not Found)
在HTML文档中,通常会链接文件:
<script type="text/javascript" src="main.js">
如何删除斜杠?