RIOT.JS - Năng suất
Lợi nhuận là một cơ chế để đưa nội dung html bên ngoài vào thẻ RIOT. Có nhiều cách để đạt được lợi nhuận.
Simple Yield- Nếu chúng tôi muốn thay thế một trình giữ chỗ duy nhất trong thẻ. Sau đó sử dụng cơ chế này.
<custom3Tag>
Hello <yield/>
</custom3Tag>
<custom3Tag><b>User</b></custom3Tag>
Multiple Yield- Nếu chúng ta muốn thay thế nhiều chỗ dành sẵn trong thẻ. Sau đó sử dụng cơ chế này.
<custom4Tag>
<br/><br/>
Hello
<yield from = "first"/>
<br/><br/>
Hello
<yield from = "second"/>
</custom4Tag>
<custom4Tag>
<yield to = "first">User 1</yield>
<yield to = "second">User 2</yield>
</custom4Tag>
Thí dụ
Sau đây là ví dụ đầy đủ.
custom3Tag.tag
<custom3Tag>
Hello <yield/>
</custom3Tag>
custom4Tag.tag
<custom4Tag>
<br/><br/>
Hello
<yield from = "first"/>
<br/><br/>
Hello
<yield from = "second"/>
</custom4Tag>
custom3.htm
<html>
<head>
<script src = "https://cdnjs.cloudflare.com/ajax/libs/riot/3.13.2/riot+compiler.min.js"></script>
</head>
<body>
<custom3Tag><b>User</b></custom3Tag>
<custom4Tag>
<yield to = "first">User 1</yield>
<yield to = "second">User 2</yield>
</custom4Tag>
<script src = "custom3Tag.tag" type = "riot/tag"></script>
<script src = "custom4Tag.tag" type = "riot/tag"></script>
<script>
riot.mount("custom3Tag");
riot.mount("custom4Tag");
</script>
</body>
</html>
Điều này sẽ tạo ra kết quả sau: