vue-router
默認(rèn) hash 模式 —— 使用 URL 的 hash 來模擬一個(gè)完整的 URL,于是當(dāng) URL 改變時(shí),頁面不會(huì)重新加載裸燎。
如果不想要很丑的 hash茅逮,我們可以用路由的 history 模式,這種模式充分利用 history.pushState
API 來完成 URL 跳轉(zhuǎn)而無須重新加載頁面嚼蚀。
const router = new VueRouter({
mode: 'history',
routes: [...]
})
當(dāng)你使用 history 模式時(shí),URL 就像正常的 url管挟,例如 http://yoursite.com/user/id
轿曙,也好看!
不過這種模式要玩好僻孝,還需要后臺(tái)配置支持导帝。因?yàn)槲覀兊膽?yīng)用是個(gè)單頁客戶端應(yīng)用,如果后臺(tái)沒有正確的配置穿铆,當(dāng)用戶在瀏覽器直接訪問 http://oursite.com/user/id
就會(huì)返回 404您单,這就不好看了。
所以呢荞雏,你要在服務(wù)端增加一個(gè)覆蓋所有情況的候選資源:如果 URL 匹配不到任何靜態(tài)資源虐秦,則應(yīng)該返回同一個(gè) index.html
頁面,這個(gè)頁面就是你 app 依賴的頁面凤优。
#后端配置例子
#Apache
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.html [L]
</IfModule>
除了 mod_rewrite
羡疗,你也可以使用 FallbackResource
。
#nginx
location / {
try_files $uri $uri/ /index.html;
}
#原生 Node.js
const http = require('http')
const fs = require('fs')
const httpPort = 80
http.createServer((req, res) => {
fs.readFile('index.htm', 'utf-8', (err, content) => {
if (err) {
console.log('We cannot open "index.htm" file.')
}
res.writeHead(200, {
'Content-Type': 'text/html; charset=utf-8'
})
res.end(content)
})
}).listen(httpPort, () => {
console.log('Server listening on: http://localhost:%s', httpPort)
})