/

如何在Sapper中重定向到URL

如何在Sapper中重定向到URL

最近我在使用Svelte + Sapper構建的應用程序中遇到了一個需求,即在用戶訪問根域名/時,重定向到頁面URL為/spreadsheet/1,而不是顯示主頁。

於是我打開了src/routes/index.svelte文件,刪除了其中所有內容,並添加了以下代碼:

1
2
3
4
5
<script context="module">
export async function preload(page, session) {
return this.redirect(301, 'spreadsheet/1')
}
</script>

tags: [“Sapper”, “URL重定向”]