我在一个项目中使用 Svelte 和 Sapper。假设我有一些代码需要在运行之前读取 cookie,并且该代码位于 say/profile
或某处的路由中。
我的理解是 Sapper 不保证代码将在哪里运行。如果我将代码放在常规<script>
标签或onMount
块中,当用户/profile
直接从服务器请求时,代码仍会在服务器上执行(并失败),但随后会在客户端再次执行:
<script>
import { getCookie } from "../../myUtilities.js";
const myCookieValue = getCookie("myCookie");
async function myRuntimeAction() {
let res = fetch(`https://www.example.com/api/${myCookieValue}`);
...
}
</script>
<form on:submit|preventDefault={myRuntimeAction}>
<button>
Take Action!
</button>
</form>
是否有一种惯用的 Svelte / Sapper 方式来保证代码仅在客户端运行时,它可以访问 cookie?