更新是否会导致SVELTE组件给Rerender?
当调用Svelte组件中的生命周期函数(假设AfterUpdate())时。它会导致组件恢复吗?
例如,
<script>
import { afterUpdate } from 'svelte';
afterUpdate(() => {
console.log('the component just updated');
});
</script>
这仅仅是一个组件更新还是重新读取?
When the lifecycle function(lets say afterUpdate()) in a Svelte component gets invoked. Does it cause the component to rerender?
For example
<script>
import { afterUpdate } from 'svelte';
afterUpdate(() => {
console.log('the component just updated');
});
</script>
Is this simply just a component updating or does rerendering occur?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
afterupdate
函数在组件更新后执行回调: https”> https ://svelte.dev/docs#run time-svelte-afterupdate发生更新后,它只能让您做一些事情。当然,您可以更新属性,并且可以恢复组件,但是Svelte将为您管理所有内容,因此您必须担心无限的更新循环:
例如,这里的方法
AfterUpdate
将仅调用两次:名称
由于settimeout
时更改时,The
afterUpdate
function executes a callback after the component get updated: https://svelte.dev/docs#run-time-svelte-afterupdateIt simply lets you do something after an update occurred. Of course, you can update properties and it will rerender the component, but Svelte will manage everything for you so you have to worry about an infinite update loop:
For example, here the method
afterUpdate
will be called only twice:name
change due to thesetTimeout