赞
踩
1,先加载onMount运行时:
import { onMount } from "svelte";
2,创建一个空的数组变量:
let data = [];
3,创建onMount函数:
- onMount(async function(){
- const response = await fetch('data.json');
- data = await response.json();
- });
好了,现在你可以使用json选择器拿捏它了,注意以上步骤都需要在主文件或组件中使用,无法在全局js中使用运行时状态。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。