22、HTL Sightly (一)data-sly-list data-sly-repeat

2024-03-06 10:10
文章标签 list data 22 repeat htl sightly sly

本文主要是介绍22、HTL Sightly (一)data-sly-list data-sly-repeat,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

文章目录

  • 22、HTL Sightly (一)data-sly-list & data-sly-repeat
    • data-sly-list
      • 显示列表中的一部分数据
    • data-sly-repeat
    • data-sly-repeat与data-sly-list的区别

22、HTL Sightly (一)data-sly-list & data-sly-repeat

在HTL模板语言中,有大量的API可供使用,在这一章中主要来讲解如何在HTL页面中使用data-sly-list和data-sly-repeat来展示数据列表。

data-sly-list

使用data-sly-list来展现一个数据列表,创建HTLSightly.java接口和HTLSightlyImpl.java实现类,与之前章节中讲到的SlingModel创建方式一致

package com.adobe.aem.guides.wknd.core.models;import com.adobe.aem.guides.wknd.core.models.dto.Book;import java.util.List;public interface HTLSightly {List<Book> getBooks();
}
package com.adobe.aem.guides.wknd.core.models.impl;import com.adobe.aem.guides.wknd.core.models.HTLSightly;
import com.adobe.aem.guides.wknd.core.models.dto.Book;
import com.adobe.cq.export.json.ExporterConstants;
import lombok.extern.slf4j.Slf4j;
import org.apache.sling.api.SlingHttpServletRequest;
import org.apache.sling.api.resource.Resource;
import org.apache.sling.models.annotations.DefaultInjectionStrategy;
import org.apache.sling.models.annotations.Exporter;
import org.apache.sling.models.annotations.Model;import java.util.ArrayList;
import java.util.List;@Slf4j
@Model(adaptables = {SlingHttpServletRequest.class, Resource.class},adapters = {HTLSightly.class},resourceType = {HTLSightlyImpl.RESOURCE_TYPE},defaultInjectionStrategy = DefaultInjectionStrategy.OPTIONAL
)
@Exporter(name = ExporterConstants.SLING_MODEL_EXPORTER_NAME, extensions = ExporterConstants.SLING_MODEL_EXTENSION)
public class HTLSightlyImpl implements HTLSightly {public final static String RESOURCE_TYPE = "wknd-guides/components/htlsightly";@Overridepublic List<Book> getBooks() {List<Book> books = new ArrayList<>();books.add(Book.builder().name("AEM").price(11.11).build());books.add(Book.builder().name("Java").price(22.22).build());books.add(Book.builder().name("JavaScript").price(33.33).build());return books;}
}

创建实体类Book.java

package com.adobe.aem.guides.wknd.core.models.dto;import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.experimental.Accessors;@Data
@AllArgsConstructor
@NoArgsConstructor
@Builder
@Accessors(chain = true)
public class Book {private String name;private double price;}

对话框中的ID没有实际作用,在后期可以通过手动维护ID类达到在页面上获取为一组件元素的功能

<?xml version="1.0" encoding="UTF-8"?>
<jcr:root xmlns:sling="http://sling.apache.org/jcr/sling/1.0" xmlns:granite="http://www.adobe.com/jcr/granite/1.0" xmlns:cq="http://www.day.com/jcr/cq/1.0" xmlns:jcr="http://www.jcp.org/jcr/1.0" xmlns:nt="http://www.jcp.org/jcr/nt/1.0"jcr:primaryType="nt:unstructured"jcr:title="list and repeat"sling:resourceType="cq/gui/components/authoring/dialog"><contentjcr:primaryType="nt:unstructured"sling:resourceType="granite/ui/components/coral/foundation/container"><items jcr:primaryType="nt:unstructured"><tabsjcr:primaryType="nt:unstructured"sling:resourceType="granite/ui/components/coral/foundation/tabs"maximized="{Boolean}false"><items jcr:primaryType="nt:unstructured"><propertiesjcr:primaryType="nt:unstructured"jcr:title="Properties"sling:resourceType="granite/ui/components/coral/foundation/container"margin="{Boolean}true"><items jcr:primaryType="nt:unstructured"><columnsjcr:primaryType="nt:unstructured"sling:resourceType="granite/ui/components/coral/foundation/fixedcolumns"margin="{Boolean}true"><items jcr:primaryType="nt:unstructured"><columnjcr:primaryType="nt:unstructured"sling:resourceType="granite/ui/components/coral/foundation/container"><items jcr:primaryType="nt:unstructured"><idjcr:primaryType="nt:unstructured"sling:resourceType="granite/ui/components/coral/foundation/form/textfield"fieldLabel="ID"name="./id"/></items></column></items></columns></items></properties></items></tabs></items></content>
</jcr:root>

组件配置信息

<?xml version="1.0" encoding="UTF-8"?>
<jcr:root xmlns:sling="http://sling.apache.org/jcr/sling/1.0"xmlns:jcr="http://www.jcp.org/jcr/1.0"jcr:primaryType="cq:Component"jcr:title="list and repeat"jcr:description="list and repeat"componentGroup="Steven Group" />

组件页面信息

  • data-sly-list.book:data-sly-list为遍历集合数据的API,book为集合中的单个元素名称,可自定义
  • bookList.index:当使用data-sly-list来遍历集合数据时,默认会创建一个*List,*为元素名称,index可以获取到下标值
  • bookList.count:可以获取到下标+1
  • bookList.first:是否为第一个数据
  • bookList.middle:是否为中间的数据
  • bookList.last:是否为最后一个数据
  • bookList.odd:是否为奇数个数据
<div class="cq-placeholder cmp-title" data-emptytext="${component.title}:Click to configure" data-sly-unwrap="${!wcmmode.edit}"></div><sly data-sly-use.model="com.adobe.aem.guides.wknd.core.models.HTLSightly"><div data-sly-list.book="${model.books}"><h1>下标:${bookList.index}</h1><h1>序号:${bookList.count}</h1><h2>书名:${book.name}</h2><h2>价格:${book.price}</h2></div>
</sly>

创建页面新增list repeat组件,效果如下

在这里插入图片描述

显示列表中的一部分数据

如果只想显示列表中的一部分该如何做呢?可以使用@符号增加操作变量,修改代码如下,下标从0开始,到1结束,就是显示前两个内容

<div data-sly-list.book="${model.books @ begin = 0, end = 1}">

刷新页面,只看到了前两条数据

请添加图片描述

如果只想显示偶数下标的数据,可以添加step参数,代码如下

<div data-sly-list.book="${model.books @ begin = 0, step=2, end = 2}">

请添加图片描述

data-sly-repeat

data-sly-repeat与data-sly-list使用方式一样,修改如下代码

<div class="cq-placeholder cmp-title" data-emptytext="${component.title}:Click to configure" data-sly-unwrap="${!wcmmode.edit}"></div><sly data-sly-use.model="com.adobe.aem.guides.wknd.core.models.HTLSightly"><h1>==== data-sly-list =====</h1><div  class="list" data-sly-list.book="${model.books @ begin = 0, step=2, end = 2}"><h1>下标:${bookList.index}</h1><h1>序号:${bookList.count}</h1><h2>书名:${book.name}</h2><h2>价格:${book.price}</h2></div><h1>==== data-sly-repeat =====</h1><div class="repeat" data-sly-repeat.book="${model.books}"><h1>下标:${bookList.index}, 序号:${bookList.count}, 第一个:${bookList.first}, 最后一个:${bookList.last}</h1><h2>书名:${book.name}</h2><h2>价格:${book.price}</h2></div>
</sly>

查看页面显示效果

请添加图片描述

data-sly-repeat与data-sly-list的区别

data-sly-repeat与data-sly-list显示效果是一样的,那么它们有什么区别?

查看页面源码会发现,两者在页面的渲染方式不同。

  • data-sly-list:会把所有的元素和属性都放在class为list的div元素中
  • data-sly-repeat:会把class为repeat的div元素复制一份,再把元素内容渲染在div中

请添加图片描述

这篇关于22、HTL Sightly (一)data-sly-list data-sly-repeat的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/779707

相关文章

【C++】_list常用方法解析及模拟实现

相信自己的力量,只要对自己始终保持信心,尽自己最大努力去完成任何事,就算事情最终结果是失败了,努力了也不留遗憾。💓💓💓 目录   ✨说在前面 🍋知识点一:什么是list? •🌰1.list的定义 •🌰2.list的基本特性 •🌰3.常用接口介绍 🍋知识点二:list常用接口 •🌰1.默认成员函数 🔥构造函数(⭐) 🔥析构函数 •🌰2.list对象

论文翻译:arxiv-2024 Benchmark Data Contamination of Large Language Models: A Survey

Benchmark Data Contamination of Large Language Models: A Survey https://arxiv.org/abs/2406.04244 大规模语言模型的基准数据污染:一项综述 文章目录 大规模语言模型的基准数据污染:一项综述摘要1 引言 摘要 大规模语言模型(LLMs),如GPT-4、Claude-3和Gemini的快

Collection List Set Map的区别和联系

Collection List Set Map的区别和联系 这些都代表了Java中的集合,这里主要从其元素是否有序,是否可重复来进行区别记忆,以便恰当地使用,当然还存在同步方面的差异,见上一篇相关文章。 有序否 允许元素重复否 Collection 否 是 List 是 是 Set AbstractSet 否

CentOS下mysql数据库data目录迁移

https://my.oschina.net/u/873762/blog/180388        公司新上线一个资讯网站,独立主机,raid5,lamp架构。由于资讯网是面向小行业,初步估计一两年内访问量压力不大,故,在做服务器系统搭建的时候,只是简单分出一个独立的data区作为数据库和网站程序的专区,其他按照linux的默认分区。apache,mysql,php均使用yum安装(也尝试

【Python报错已解决】AttributeError: ‘list‘ object has no attribute ‘text‘

🎬 鸽芷咕:个人主页  🔥 个人专栏: 《C++干货基地》《粉丝福利》 ⛺️生活的理想,就是为了理想的生活! 文章目录 前言一、问题描述1.1 报错示例1.2 报错分析1.3 解决思路 二、解决方法2.1 方法一:检查属性名2.2 步骤二:访问列表元素的属性 三、其他解决方法四、总结 前言 在Python编程中,属性错误(At

使用Spring Boot集成Spring Data JPA和单例模式构建库存管理系统

引言 在企业级应用开发中,数据库操作是非常重要的一环。Spring Data JPA提供了一种简化的方式来进行数据库交互,它使得开发者无需编写复杂的JPA代码就可以完成常见的CRUD操作。此外,设计模式如单例模式可以帮助我们更好地管理和控制对象的创建过程,从而提高系统的性能和可维护性。本文将展示如何结合Spring Boot、Spring Data JPA以及单例模式来构建一个基本的库存管理系统

15 组件的切换和对组件的data的使用

划重点 a 标签的使用事件修饰符组件的定义组件的切换:登录 / 注册 泡椒鱼头 :微辣 <!DOCTYPE html><html lang="en"><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta http-equiv="X-UA-

12C 新特性,MOVE DATAFILE 在线移动 包括system, 附带改名 NID ,cdb_data_files视图坏了

ALTER DATABASE MOVE DATAFILE  可以改名 可以move file,全部一个命令。 resue 可以重用,keep好像不生效!!! system照移动不误-------- SQL> select file_name, status, online_status from dba_data_files where tablespace_name='SYSTEM'

SIGMOD-24概览Part7: Industry Session (Graph Data Management)

👇BG3: A Cost Effective and I/O Efficient Graph Database in ByteDance 🏛机构:字节 ➡️领域: Information systems → Data management systemsStorage management 📚摘要:介绍了字节新提出的ByteGraph 3.0(BG3)模型,用来处理大规模图结构数据 背景

List list = new ArrayList();和ArrayList list=new ArrayList();的区别?

List是一个接口,而ArrayList 是一个类。 ArrayList 继承并实现了List。 List list = new ArrayList();这句创建了一个ArrayList的对象后把上溯到了List。此时它是一个List对象了,有些ArrayList有但是List没有的属性和方法,它就不能再用了。而ArrayList list=new ArrayList();创建一对象则保留了A