RIOT.JS-이벤트 처리
refs 객체를 사용하여 HTML 요소에 액세스하는 것과 유사한 방식으로 이벤트를 HTML 요소에 첨부 할 수 있습니다. 첫 번째 단계로 DOM 요소에 ref 속성을 추가하고 태그의 스크립트 블록에서 this.ref를 사용하여 액세스합니다.
Attach ref − DOM 요소에 ref 속성을 추가합니다.
<button ref = "clickButton">Click Me!</button>
Use the refs object− 이제 마운트 이벤트에서 refs 객체를 사용합니다. 이 이벤트는 RIOT가 사용자 정의 태그를 마운트하고 refs 객체를 채울 때 시작됩니다.
this.on("mount", function() {
console.log("Mounting");
console.log(this.refs.username.value);
})
예
다음은 완전한 예입니다.
custom5Tag.tag
<custom5Tag>
<form>
<input ref = "username" type = "text" value = "Mahesh"/>
<input type = "submit" value = "Click Me!" />
</form>
<script>
this.on("mount", function() {
console.log("Mounting");
console.log(this.refs.username.value);
})
</script>
</custom5Tag>
custom5.htm
<html>
<head>
<script src = "https://cdnjs.cloudflare.com/ajax/libs/riot/3.13.2/riot+compiler.min.js"></script>
</head>
<body>
<custom5Tag></custom5Tag>
<script src = "custom5Tag.tag" type = "riot/tag"></script>
<script>
riot.mount("custom5Tag");
</script>
</body>
</html>
이것은 다음 결과를 생성합니다-