我们如何将数组传递给 Svelte 模板并遍历内容?
我的 main.js 看起来像:
import App from './App.html';
const app = new App({
target: document.body,
data: [{name: 'hello'}, { name: 'world'}]
});
export default app;
我的 App.html 文件如下所示:
{#each cats as cat}
<h1>Hello {cat.name}!</h1>
{/each}
<style>
h1 {
color: purple;
}
</style>
这似乎应该工作..但没有出现。我也为每个模板尝试了双花括号。