大家都知道vue-router有兩種模式,hash模式和history模式,帶#的則是hash模式。接下來為大家帶來了Vue 去除路徑中的#號的解決方法,有興趣的朋友一起看看吧
在開發過程中發現路徑中帶有/#/的標示,而且還去不掉,很醜。
眾所周知,vue-router有兩種模式,hash模式和history模式。
帶#的則是hash模式。
將router中的mode設定為history就可以了
接下來有個問題,介面一刷新,就變404了! ! ! !
網路上搜了下,需要對後端環境進行一個設定。
這裡只列舉nginx的配置,其他的配置點這裡去官網看
先配置config/index.js
修改assetsPublicPath為根目錄
#
module.exports = { build: { env: require('./prod.env'), index: path.resolve(__dirname, '../dist/index.html'), assetsRoot: path.resolve(__dirname, '../dist'), assetsSubDirectory: 'static', assetsPublicPath: '/', // hash 模式会默认的在此处 添加为 assetsPublicPath: './' productionSourceMap: true, ... } }
然後設定nignx
server { listen 0.0.0.0:12345; location / { root /home/我的应用跟目录; try_files $uri $uri/ /index.html =404; // 这个是重点 } error_page 404 /index.html }
Url再也沒有#了,多完美
#以上就是本文的全部內容,希望對大家的學習有所幫助,更多相關內容請關注PHP中文網!
相關推薦:
基於cropper.js封裝vue實作線上圖片裁切元件的功能
##
以上是Vue 去除路徑中的#號的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!