Svelte에서 자식에서 부모에게 이벤트를 보내는 방법
3245 단어 tutorialwebdevsveltejavascript
<script>
// we write export let to say that this is a property
// that means we can change it later!
let x = 0;
const addToCounter = function() {
++x;
}
</script>
<button id="counter" on:click={addToCounter}>{x}</button>
이것은 잘 작동하지만 클릭할 때마다 일정량만큼 카운터를 증가시키도록 변경하고 싶다고 가정해 보겠습니다. 코드를 다음과 같이 변경해 볼 수 있습니다.
<script>
// we write export let to say that this is a property
// that means we can change it later!
let x = 0;
const addToCounter = function(amount) {
x += amount;
}
</script>
<button id="counter" on:click={addToCounter(5)}>{x}</button>
그러나 이것은 작동하지 않습니다. 대신 함수를 포함하도록 이벤트를 변경해야 합니다.
addToCounter
함수에 인수를 추가하려면 대신 다음과 같이 해야 합니다.<button id="counter" on:click={() => addToCounter(5)}>{x}</button>
여기에서
addToCounter
에 의해 생성된 값을 반환하는 함수를 호출합니다. 이는 이벤트에도 적용되므로 이벤트 또는 e
객체를 함수에 전달하려는 경우 다음과 같이 할 수 있습니다.<button id="counter" on:click={(e) => addToCounter(e)}>{x}</button>
Reference
이 문제에 관하여(Svelte에서 자식에서 부모에게 이벤트를 보내는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/smpnjn/how-to-send-events-from-a-child-to-parent-in-svelte-3lo9텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)