我需要的是async-await
在 Svelte中使用onMount()
。
或者,也许您可以建议我出了什么问题以及我可以使用什么。
重现
- 去这里:https ://svelte.dev/repl/000ae69c0fe14d9483678d4ace874726?version=3.23.0
- 打开控制台
- 点击按钮
- 你应该看到消息:
"Mounting..."
和"A lot of background work..."
- 如果再次单击,则不会写入销毁消息
为什么?
onMount()
承认async
功能承诺了吗?应该是?
我需要这种行为,因为我需要在渲染组件之前async
等待。function lazyLoading()
Child
在 Svelte 中是否有其他方法可以做到这一点?