uni-app 去掉 URL 中的井号
uni-app About 494 words说明
地址栏URL
中带有#
,说明工程是以哈希模式启动或者编译的,改为history
模式即可。
解决方法
打开manifest.json
,在源码试图(HBuilder
中打开才有)或者以文本形式打开。
添加h5
节点,指定router
下mode
为history
。注意:重新运行工程。
{
"h5": {
"router": {
"mode": "history"
},
"devServer": {
"port": 5173,
"proxy": {
"/api": {
"target": "http://localhost:8080",
"changeOrigin": true,
"secure": false
}
}
}
}
}
Views: 16 · Posted: 2025-07-20
————        END        ————
Give me a Star, Thanks:)
https://github.com/fendoudebb/LiteNote扫描下方二维码关注公众号和小程序↓↓↓

Loading...