일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 계명대 이종호
- 호키스
- 자바스크립트 자료구조
- IOS
- 리액트 예제
- javascript
- 비동기
- 개발
- 힛잇
- 스벨트
- data structure
- queue
- 계명대
- 호키도키
- HTML
- 이종호
- 스위프트
- jest
- 리액트
- TDD
- hokeys
- hokidoki
- Hitit
- SWIFT
- 자바스크립트
- Svelte
- 자스민
- react
- 개발자
- 자료구조
Archives
- Today
- Total
Dog foot print
[SVELTE] bind:group & this 본문
bind:group & this
Bind:group
bind:group
문법은 type="radio"
혹은 type="checkbox"
의 인풋에서 요긴하게 사용되는 예약어이다.
아래의 코드에서 보다시피 radio 버튼에 group을 설정하게 되면, 버튼이 클릭되었을 때, 해당 value가 변수에 할당되게 된다.
Checkbox는 다중 선택이 가능하기 때문에, 이를 bind:group
으로 설정하면 체크되어 있는 input의 value가 배열에 저장되게 된다.
<script>
let tortilla = 'Plain';
let fillings = [];
</script>
<!-- grouped radio inputs are mutually exclusive -->
<input type="radio" bind:group={tortilla} value="Plain">
<input type="radio" bind:group={tortilla} value="Whole wheat">
<input type="radio" bind:group={tortilla} value="Spinach">
<!-- grouped checkbox inputs populate an array -->
<input type="checkbox" bind:group={fillings} value="Rice">
<input type="checkbox" bind:group={fillings} value="Beans">
<input type="checkbox" bind:group={fillings} value="Cheese">
<input type="checkbox" bind:group={fillings} value="Guac (extra)">
bind:this
bind:this
는 특정 돔 노드를 변수에 할당하는 역할을 한다. 다만, 렌더링 이후에, 노드 요소가 변수에 할당되기 때문에, 사용시 주의를 필요로 한다.
<script>
import { onMount } from 'svelte';
let canvasElement;
onMount(() => {
const ctx = canvasElement.getContext('2d');
drawStuff(ctx);
});
</script>
<canvas bind:this={canvasElement}></canvas>
#svelte
반응형
'SVELTE > API DOCS' 카테고리의 다른 글
[SVELTE]use:action (0) | 2021.06.10 |
---|---|
[SVELTE] on:eventname (0) | 2021.06.03 |
[SVELTE] @HTML (0) | 2021.05.21 |
[SVELTE] #key (0) | 2021.05.21 |
[SVELTE] #each (0) | 2021.05.21 |
Comments